/inventory

Node.js sample app with express and sqlite3.

Primary LanguageEJS

Minimum Requirements

  1. Node.js 16.x

Installation

  1. Clone this repository
git clone https://github.com/haruaki07/inventory.git
cd inventory
  1. Install node dependencies
npm install
  1. Build tailwindcss
npm run build
  1. Add .env file, then set the value as you like
# first copy .env.example to .env
cp .env.example .env
  1. Run
# development
npm run dev
# or in production
npm run start
# or in production with pm2
npm run start:prod