Following exercise on typescript from @reverentgeek's post with a few changes.
Create .env
file:
NODE_ENV=development
APP_PORT=8080
#
## LOCAL
#
PGHOST=localhost
PGUSER=postgres
PGDATABASE=postgres
PGPASSWORD=
PGPORT=5432
npm install
npm run initdb
npm run dev
- Authentication using
passport-local
strategy- username:
juan
- password:
meow
- username:
- Created routes using express router
- Some API endpoints and HTTP verbs
- Some SQL queries