Skip to content

Latest commit

 

History

History
23 lines (19 loc) · 1.32 KB

README.md

File metadata and controls

23 lines (19 loc) · 1.32 KB

CircleCI Maintainability Test Coverage

What would you do if your income were taken care of?

Synopsis

This application provides a space for people to imagine and share what they would like to accomplish in their lives if basic economic security was not bound to a job.

Setup

Postgres Database

Install Postgres 10.2 locally. Then create a user and two databases as follows.

$ psql postgres
> CREATE ROLE whatwouldyoudo PASSWORD 'whatwouldyoudo' NOSUPERUSER CREATEDB NOCREATEROLE INHERIT LOGIN;
> CREATE DATABASE whatwouldyoudo OWNER whatwouldyoudo;
> CREATE DATABASE whatwouldyoudo_test OWNER whatwouldyoudo;

Sidekiq and Redis for ActiveJobs

In order to use ActiveJobs, you need to have a redis server and the sidekiq service running like so:

$ redis-server
$ sidekiq --config sidekiq.yml default -q mailers -q system