This is the Ember.js app that powers the FastBoot website, https://ember-fastboot.com.
Most of the content is authored in Markdown and can be found in the markdown
directory.
You don't need this repository to use FastBoot. However, if you'd like to contribute documentation or correct errors, you can submit a pull request.
To run the website locally:
git clone https://github.com/ember-fastboot/fastboot-website
cd fastboot-website
npm install
ember serve
- Visit the app at http://localhost:4200.
ember test
ember test --server
ember build
(development)ember build --environment production
(production)
This site is served in production by an express.js application
fastboot-server. To serve the app using the fastboot-server
use the following command which will
build the app with production env
and serve the app at localhost:3000
npm run server:node
Pull requests merged into master are automatically deployed to Heroku.