@@ -8,41 +8,38 @@ A short introduction of this app could easily go here.
88You will need the following things properly installed on your computer.
99
1010- [ Git] ( https://git-scm.com/ )
11- - [ Node.js] ( https://nodejs.org/ )
12- - [ pnpm] ( https://pnpm.io/ )
13- - [ Ember CLI] ( https://cli.emberjs.com/release/ )
11+ - [ Node.js] ( https://nodejs.org/ ) (with npm)
1412- [ Google Chrome] ( https://google.com/chrome/ )
1513
1614## Installation
1715
1816- ` git clone <repository-url> ` this repository
1917- ` cd v2-app-template `
20- - ` pnpm install`
18+ - ` npm install`
2119
2220## Running / Development
2321
24- - ` pnpm start`
22+ - ` npm run start`
2523- Visit your app at [ http://localhost:4200 ] ( http://localhost:4200 ) .
2624- Visit your tests at [ http://localhost:4200/tests ] ( http://localhost:4200/tests ) .
2725
2826### Code Generators
2927
30- Make use of the many generators for code, try ` ember help generate ` for more details
28+ Make use of the many generators for code, try ` npm exec ember help generate` for more details
3129
3230### Running Tests
3331
34- - ` pnpm test `
35- - ` pnpm test:ember --server `
32+ - ` npm run test `
3633
3734### Linting
3835
39- - ` pnpm lint`
40- - ` pnpm lint:fix`
36+ - ` npm run lint`
37+ - ` npm run lint:fix`
4138
4239### Building
4340
44- - ` pnpm ember build` (development)
45- - ` pnpm build` (production)
41+ - ` npm exec vite build --mode development ` (development)
42+ - ` npm run build` (production)
4643
4744### Deploying
4845
@@ -51,7 +48,7 @@ Specify what it takes to deploy your app.
5148## Further Reading / Useful Links
5249
5350- [ ember.js] ( https://emberjs.com/ )
54- - [ ember-cli ] ( https://cli.emberjs.com/release/ )
51+ - [ Vite ] ( https://vite.dev )
5552- Development Browser Extensions
5653 - [ ember inspector for chrome] ( https://chrome.google.com/webstore/detail/ember-inspector/bmdblncegkenkacieihfhpjfppoconhi )
5754 - [ ember inspector for firefox] ( https://addons.mozilla.org/en-US/firefox/addon/ember-inspector/ )
0 commit comments