Ember-selenium-build
demo site A pre-render tool that builds a few pages of your ember app as a static site
Example:
If you have a router that looks like:
Router;
Specify in your ember-selenium-build.js
file what paths you want built:
moduleexports = "/" "terms-of-service" "posts" "posts/new" "post/1" "post/1/edit";
Notice that you're manually putting post ids like the worst of plebs. This is okay for small sites (e.g. your personal blog or portfolio which you promised yourself you'd update every week, but haven't written for since a year ago), but I personally advise you checkout ember-fastboot if you have an actual web app that requires the full utilization of database, search, cache, etc., layers.
As a general rule, if you can get away with just using fixture data for your ember app, this addon will be perfect for you.
How?
Run the commands
ember selenium-build:build
Installation
git clone
this repositorynpm install
bower install
Running
ember server
- Visit your app at http://localhost:4200.
Running Tests
npm run server-test
Building
ember build
For more information on using ember-cli, visit http://ember-cli.com/.