Skip to content

Instantly share code, notes, and snippets.

@biojazzard
Created May 9, 2013 19:25
Show Gist options
  • Select an option

  • Save biojazzard/5549879 to your computer and use it in GitHub Desktop.

Select an option

Save biojazzard/5549879 to your computer and use it in GitHub Desktop.
Open Shift | CodeIgniter
/* 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