Copy the example files
$ cp config/secrets.yml.example config/secrets.yml
$ cp .env.example .env
$ cp config/database.yml.example config/database.yml
Setup database
$ rake db:create
$ rake db:migrate
$ rake db:seed
Run the application
$ rails server -p 5000