-
-
Save jpfuentes2/4661192 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
bundle install --binstubs | |
bundle exec rake db:drop RAILS_ENV=development | |
bundle exec rake db:drop RAILS_ENV=test | |
bundle exec rake db:create:all | |
bundle exec rake db:setup | |
bundle exec rake db:development:accounts | |
echo " | |
Created the following users. All have the password 'test': | |
* [email protected] <= From test suite. Basic user with basic data. | |
* [email protected] <= From test suite. New user. | |
* [email protected] <= Development account. Full set of colors and box options for GUI testing. | |
" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment