- Ruby 2.3.1
- PostgreSQL
Install gems:
$ bundle install
Create config file to hold environment variables:
$ bundle exec figaro install
Add variables to config file:
# config/application.yml
db_username: <username>
test_db: <dbname>
base_url: <http://localhost:3000>
Create database:
$ rails db:create db:schema:load
Run server:
$ rails s
- 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