Kyrgyzstan IT community platform.
Install gems:
bundle
Setup environment variables:
cp .env.example .env && nano .env
Update database configuration for development & test environments:
cp config/database.yml.example config/database.yml && nano config/database.yml
Create databases for development & test environments:
rake db:create && rake db:test:prepare
Run tests:
rspec
Prepopulate database:
rake db:populate
Run web-server:
rails s
Open http://lvh.me:3000
Project is hosted on heroku. Travis CI is configured to deploy code automatically on successful build(database migrations included).
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request