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=password
run the following commands to get started
Spin up your database
docker compose up
Install dependencies
npm install
Start the server
npm start