/dbapp

ExpressJS & node-postgres demo app

Primary LanguageJavaScript

Setup the environment variables

Create the .env file in dbapp

cd dbapp
touch .env

Add these variables to your .env file

PORT=9000
DB_USER='postgres'
DB_PASSWORD='your-password'
DB_HOST='localhost'
DB_PORT=5432
DB_NAME='postgres'

Start the app

node app.js