Created
May 9, 2013 19:25
-
-
Save biojazzard/5549879 to your computer and use it in GitHub Desktop.
Open Shift | CodeIgniter
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
| /* https://www.openshift.com/get-started/codeigniter */ | |
| /* Install */ | |
| gem install rhc | |
| /* Setup SSH */ | |
| rhc setup | |
| /* Setup App: MyAppName */ | |
| cd ./openshift.com | |
| rhc app create –a MyAppName –t php-5.3 | |
| rhc cartridge add mysql-5.1 -a MyApp | |
| /* CLI */ | |
| Install the Git client for your operating system, and from your command line run | |
| git clone ssh://[email protected]/~/git/reveal.git/ | |
| cd reveal/ | |
| This will create a folder with the source code of your application. After making a change, add, commit, and push your changes. | |
| git add . | |
| git commit -m 'My changes' | |
| git push |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment