This code is forked from here
There is an associated tutorial here if you need a quick refresher.
Use your fork of this to experiment and follow along with WDD03 videos. We will Dockerize, swaggerize, authenticate, and deploy this app, and you can use this as inspiration when you come to work on your group project.
Start a PostgreSQL container to get your database running:
docker run -d \
--name pern-todo-db \
-p 5432:5432 \
-e POSTGRES_PASSWORD=password \
-v pern-todo-db:/var/lib/postgresql/data \
-d \
postgres