Copy .env.local into a new file .env
Ensure docker is installed and the docker daemon is running
Ensure docker-compose is installed globally
At the root of the repo, run:
docker-compose up
If it's your first time running the project, you can set up the DB like so:
docker psand find the container ID for the building up serverdocker exec -it <container_id> /bin/bashcd srcsequelize db:migrate
If you'd like to explore the DB with psql, here's how:
docker psand find the container ID for the postgres instancedocker exec <container_id> /bin/bashpsql postgresql://alfm:buildingup@localhost:5432/building_up_dev