Peter Koper, Flaneur

A Stroll Along Life's Boulevard

Install

Clone the repository

git clone git@github.com:brotherclone/peter-koper
cd peter-koper

Check your Ruby version

ruby -v

The ouput should start with something like ruby 2.7.2

If not, install the right ruby version using rvm (it could take a while):

rvm install 2.7.2 

Install dependencies

Using Bundler and Yarn:

bundle && yarn

Set up Git Flow

Install Git Flow

brew install git-flow

Use Main/Develop/Feature Braching.

Set environment variables

Using Dot Env Rails:

Initialize the database

rails db:create db:migrate db:seed

Serve

rails s

Deploy

With Heroku pipeline, where main is tied to deployment

Push to Heroku staging remote:

git push develop