A demo from the backend track, putting all the pieces together.
Ensure you create a .env file in the root of the project, with the following contents (note, it's not normally good practice to put this in a README, but this is a demo 😊):
DB_HOST=localhost
DB_PORT=5432
DB_USER=postgres
DB_PASSWORD=passwordrun the following commands to get started
Spin up your database
docker compose upInstall dependencies
npm installStart the server
npm start