Skip to content
This repository has been archived by the owner on Jul 29, 2020. It is now read-only.

visualitypl/t7e_server

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Archived

Development and support for this project has been ceased.

T7e

Deploy

Self-hosted translation manager app for Rails

Demo

There is a demo available at http://t7e-demo.herokuapp.com/

Email: [email protected]
Password: password

Deploying:

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!