The API for simple application for saving your stories written on Ruby on Rails.
It's preferable that you'll use RVM for managing gems and ruby versions.
Go to project directory and install appropriate version of ruby and create gemset for the project as described in .ruby-version and .ruby-gemset files.
bundle installCopy master.key.example as master.key and configure them.
For edit ENV variables you should run:
EDITOR="vim" rails credentials:editCreate database:
rails db:create db:schema:loadSeed database with test data:
rake db:seedStart your server:
rails server