Created
October 13, 2012 22:34
-
-
Save Mikke/3886449 to your computer and use it in GitHub Desktop.
console bash
This file contains hidden or 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
| rvm use 1.9.3 do bundle install --path ../../shared/gems |
This file contains hidden or 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
| development: | |
| adapter: postgresql | |
| host: postgresql2.locum.ru | |
| port: 5432 | |
| encoding: unicode | |
| database: project_db | |
| username: username | |
| password: password | |
| test: | |
| production: | |
| adapter: postgresql | |
| host: postgresql2.locum.ru | |
| port: 5432 | |
| encoding: unicode | |
| database: project_db | |
| username: username | |
| password: password |
This file contains hidden or 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
| git remote add upstream https://github.com/Username/You-Project.git |
This file contains hidden or 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
| git init |
This file contains hidden or 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
| git fetch upstream |
This file contains hidden or 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
| cd projects/your-project/current/ |
This file contains hidden or 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
| rvm use 1.9.3 do bundle exec rake db:migrate | |
| rvm use 1.9.3 do bundle exec rake db:seed |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment