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.
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;
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