Skip to content

Latest commit

 

History

History
52 lines (45 loc) · 1.51 KB

File metadata and controls

52 lines (45 loc) · 1.51 KB

Boba Time

A web-based interface for a boba shop database with CRUD functionality (Create Read Update Delete).

Database Design

!place schema/erd here

How to Develop / Start from Scratch

Install dependencies:

npm install

Run with command (you should see a link to open site):

npm run start

Or to run in developer mode (changes update with saves)

npm run dev
  1. Source/make sure the DDL.sql is loaded into a database
  2. Pick a port to connect to
  3. Run app.js and open either link (flip link is specifically if on VPN)
  • Assumption is that server is running on flip3

How to Launch on Server

Run below (ignore warnings):

forever start app.js
# or if not aliased...
./node_modules/forever/bin/forever start app.js

To stop:

forever stop app.js
# or if not aliased...
./node_modules/forever/bin/forever stop app.js

Resources