/guitars-inventory

simple exercise on typescript following @reverentgeek's post

Primary LanguageTypeScriptMIT LicenseMIT

Commitizen friendly

Guitars Inventory

Following exercise on typescript from @reverentgeek's post with a few changes.

How to run

Create .env file:

NODE_ENV=development
APP_PORT=8080

#
## LOCAL
#
PGHOST=localhost
PGUSER=postgres
PGDATABASE=postgres
PGPASSWORD=
PGPORT=5432
  1. npm install
  2. npm run initdb
  3. npm run dev

Things I did different from blog post

  • Authentication using passport-local strategy
    • username: juan
    • password: meow
  • Created routes using express router
  • Some API endpoints and HTTP verbs
  • Some SQL queries