A rails application template which born from Startup DEV and now is used to start most projects at HE:labs.
- Clone rails-template to your home directory.
git clone git://github.com/Helabs/rails-template.git
- Run rails new app command using this template.
rails new app_name -m ~/rails-template/template.rb
- You can pass the database option(i.e: -d mysql or -d postgresql) that it get the correct gem.
rails new app_name -d mysql -m ~/rails-template/template.rb
or
rails new app_name -d postgresql -m ~/rails-template/template.rb
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Added some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request