- PostgreSQL Database 12
brew update && brew install redis
brew services start redis
- Install Gems -
bundle install
- Create Database -
bundle exec rake db:create
- Run Database Migrations -
bundle exec rake db:migrate
- Start server -
bundle exec rails s
- Start sidekiq -
bundle exec sidekiq
- Start rpush -
bundle exec rpush start -f
- Run Tunnel -
./ngrok http 3000
- Copy and paste the host name. It should look something like
17c2efbcd19a.ngrok.io
- Add
NGROK_HOST=#{your_host_name}
to your.env
file