This README outlines the details of collaborating on this Ember application. A short introduction of this app could easily go here.
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 waypoint
npm install
There are two modes of development.
This returns data in-browser with Mirage.js (a mocking framework) active. This means that the network requests will be intercepted and return mocked objects that are static and are re-loaded on page refresh.
ember serve
- The app will be available at http://localhost:4200.
This option assumes there is a Waypoint server running
at https://localhost:9702
.
Note: You'll need to visit the above address in the same browser session to accept the invalid certificate warning in your browser for this to work.
ember serve local
- The app will be available at http://localhost:4200.
Make use of the many generators for code, try ember help generate
for more details
ember test
ember test --server
npm run lint:hbs
npm run lint:js
npm run lint:js -- --fix
ember build
(development)ember build --environment production
(production)
Specify what it takes to deploy your app.