Team 73 Project Group for OSU Ecampus CS340
-
Load DDL.sql into your db
-
SSH into your account while on the VPN
-
Run
scp -r app yourONID@classwork.engr.oregonstate.edu:~in CS340 dir to copy file contents over. -
In SSH, cd to dir, then npm install to install dependencies.
-
Run
nano .env, and write the following:DB_HOST=classmysql.engr.oregonstate.edu
DB_USER=*
DB_PASSWORD=*
DB_NAME=*
DB_CONNECTION_LIMIT=10
PORT=29012
(replace * with your information)
-
Run
npx forever start app.js -
To stop, run
npx forever stop app.js