diff --git a/examples/getting-started/README.md b/examples/getting-started/README.md index 6ac3094..093db9f 100644 --- a/examples/getting-started/README.md +++ b/examples/getting-started/README.md @@ -24,7 +24,7 @@ git clone https://github.com/HubSpot/cms-react.git CMS React projects have a 3 significant directories: - `getting-started-project`: The HubSpot project directory that gets uploaded via the Projects system to build and deploy your CMS React code found in the `/src` directory. -- `getting-started-project/src`: A package inside your project directory containing all your assets, styles, components, modules, islands, and any local development tooling you need, such as ESLint, Prettier, TypeScript, etc. +- `getting-started-project/getting-started-app`: A package inside your project directory containing all your assets, styles, components, modules, islands, and any local development tooling you need, such as ESLint, Prettier, TypeScript, etc. - `getting-started-theme`: This is where your HubL templates and theme configuration lives. At the root of this example, you will configure any local dev tooling you want, such as ESLint, Prettier, TypeScript, etc. @@ -41,7 +41,7 @@ This will install all the local development tooling you need, including `@hubspo ### 3. Local Development -To run this example project locally, navigate to the `getting-started-project/src` directory and run: +To run this example project locally, navigate to the `getting-started-project/getting-started-app` directory and run: ```bash npm run start diff --git a/examples/getting-started/package.json b/examples/getting-started/package.json index 84f0430..59c2455 100644 --- a/examples/getting-started/package.json +++ b/examples/getting-started/package.json @@ -12,8 +12,8 @@ "yarpm": "^1.2.0" }, "scripts": { - "start": "cd getting-started-project/src && yarpm start", - "postinstall": "cd getting-started-project/src && yarpm install", + "start": "cd getting-started-project/getting-started-app && yarpm start", + "postinstall": "cd getting-started-project/getting-started-app && yarpm install", "lint:js": "eslint . --ext .js,.jsx", "prettier": "prettier . --check", "watch:hubl": "hs watch getting-started-theme getting-started-theme",