install and run postgres
install postresql and create a table in a database with a single integer in it. for example:
CREATE TABLE data(a int);
INSERT INTO data(a) VALUES (999)
edit your connection string (in app.js) to match your db name. ie. replace "jordan" with your db name.
run the server:
node app.js
hit the endpoints from insomnia/postman/browser