Development and support for this project has been ceased.
There is a demo available at http://t7e-demo.herokuapp.com/
Email: [email protected]
Password: password
Deploying to Heroku:
- Clone the repository
git clone http://github.com/visualitypl/t7e_server.git
-
Update
db/seeds.rb
with admin credentials for your initial login. -
Run
bundle
-
Create & configure for Heroku
gem install heroku
heroku create example-t7e
heroku addons:add sendgrid:starter
heroku config:add HEROKU=true
heroku config:add SECRET_TOKEN="$(bundle exec rake secret)"
heroku config:add T7E_HOST=some-hostname.example.com
heroku config:add [email protected]
git push heroku master
- Seed the DB (NOTE: No bootstrap task is used on Heroku!)
heroku run rake db:migrate
heroku run rake db:seed
heroku open
- Enjoy!