/inventory

Inventory management system for fullstack javascript

Primary LanguageJavaScript

Inventory Fullstack Project

This is a starter project learning to build and run server systems with the purpose of building, tracking, and updating an inventory.

Dependencies

Getting Started

  1. run: npm install
  2. run: npm run dev

Further Reading

  1. Express
  2. PostgreSQL

Setting Up Database

Installing Postgres on Mac with Homebrew

  1. brew update
  2. brew doctor
  3. brew install postgresql@14

Starting/Stop PostgreSQL

  1. brew services start postgresql@14

  2. brew services stop postgresql@14

  3. psql postgres

  • CREATE ROLE newUser WITH LOGIN PASSWORD 'password';
  • ALTER ROLE newUser CREATEDB;