- Install NodeJS
- Install
yarn
withnpm install -g yarn
- Run
yarn
to install dependencies - Install docker, and run
docker-compose up -d
to spin up a postgreSQL database. - Migrate the database with
DATABASE_URL=postgres://postgres:password@localhost:5432/postgres yarn migrate:up
- Run
cp .env.example .env
and fill in the empty variables in.env
. - In another terminal window, run
yarn watch-frontend
- In the main terminal window run
yarn dev-server
- Go to
http://localhost:3333