Guest User

Untitled

a guest
Jun 17th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. git clone git://github.com/osuclse/scarlet.git
  2. cd scarlet
  3. cat << EOF > config/database.yml
  4. production:
  5. adapter: mysql
  6. database: scarlet
  7. username: root
  8. password: <Password you entered above>
  9. host: localhost
  10. pool: 5
  11. timeout: 5000
  12.  
  13. test:
  14. adapter: sqlite3
  15. database: ":memory:"
  16. verbosity: silent
  17.  
  18. sis:
  19. adapter: sqlite3
  20. database: db/fake_SIS.sqlite
  21. EOF
  22. bundle install --deployment --without duke
  23. rake db:create
  24. rake db:schema:load
  25. rake
Add Comment
Please, Sign In to add comment