you know how to type commands at a shell/terminal prompt
you have git installed.
you have Node.js installed
git clone this
Install PostgreSQL on your computer and start the server.
I recommend installing the "PostgreSQL" VSCode extension by Weijan Chen so you can investigate the DB.
Connect to it from the PostgreSQL extension in VSCode - click Connect.
Create a database (e.g., 'containers')
Open a PSQL window and paste in the schema (from schema.sql
) in it.
create .env
file with contents PGCONNECT=postgres://bjmckenz:yourpass@localhost:5432/containers
in the project root (NOT inside SRC)
npm install
npm run dev
Comments and feedback are welcome!