A personal dashboard website where you can do profile related stuff!
You will need the following things properly installed on your computer.
- Git
- Node.js (with npm)
- Ember CLI
- Google Chrome
git clone <repository-url>
this repositorycd website-my
npm install
npm run dev
- (or
ember s
) - Visit your app at http://localhost.
- Visit your tests at http://localhost/tests.
Make use of the many generators for code, try ember help generate
for more details
npm run test
npm run test:ember
npm run test:ember:server
- (or
ember test
andember test --server
) - You can also visit the
/tests
route when running dev server
npx ntl
- (or
npm run
to see the list)
npm run lint
: To allow the linter to check for problemsnpm run lint:fix
: To allow linter to fix the auto-fixable problems
Note: For solving CORS errors while making API calls during development, please make sure to follow step 1 from this documentation . This project has taken care of step 2 in itself.
npm run build
(production)- (or
ember build --environment production
) ember build
(development)