A web-based interface for a boba shop database with CRUD functionality (Create Read Update Delete).
!place schema/erd here
Install dependencies:
npm installRun with command (you should see a link to open site):
npm run startOr to run in developer mode (changes update with saves)
npm run dev- Source/make sure the DDL.sql is loaded into a database
- Pick a port to connect to
- Run
app.jsand open either link (flip link is specifically if on VPN)
- Assumption is that server is running on
flip3
Run below (ignore warnings):
forever start app.js
# or if not aliased...
./node_modules/forever/bin/forever start app.jsTo stop:
forever stop app.js
# or if not aliased...
./node_modules/forever/bin/forever stop app.js