- Fork this repo
- Clone your new repo into your local dev environment &
cd into the new directory
- Ensure you have the npm configs set globally for Font Awesome Pro, or that you have a
.npmrc file with your Font Awesome Pro auth token (more info)
- Run
bundle install
- Run
yarn install
- Copy
.env.sample to .env (cp .env.sample .env)
- Run
docker-compose up -d (dcup if you have the aliases below) to spin up Postgres & Redis
- Run
rails s to spin up the Rails server
- Run
./bin/webpack-dev-server to spin up the Webpack Dev Server
- Run
bundle exec sidekiq to spin up Sidekiq if needed
alias dcdown='docker-compose down'
alias dcps='docker-compose ps'
alias dcup='docker-compose up -d'