Follow the installation instructions below. Presentation slides file
is slides.pdf
. PostgreSQL is needed to run the API server locally.
You can deploy this app to Heroku, but remember to add the
Heroku-Postgres addon and set BUILDPACK_URL
config to
https://github.com/heroku/heroku-buildpack-python
, as below:
heroku addons:add heroku-postgres:dev
heroku config:set BUILDPACK_URL= https://github.com/heroku/heroku-buildpack-python
-
git clone
this repository -
npm install
-
bower install
-
virtualenv env
-
source env/bin/activate
-
pip install -r requirements.txt
ember server
for local ember testingpython api.py --init-db
to initialize database tables (assuming you,createdb moviedb
)python api.py
for API server (remember to runember build
first)
ember test
ember test --server
ember build
For more information on using ember-cli, visit http://iamstef.net/ember-cli/.