A questioning system for our Online Judge developed by CSY54.
- Create a new table in MySQL from
init.sql
file.
$ mysql -u "username" -p < init.sql
- Modify
.env
. - Run
npm i
to install the dependencies. - Run
npm i -g forever
.
- Start:
forever start app.js
. - Stop:
forever stop app.js
.
- If
LOG_TO_FILE
is enable, the access log will log intoaccess.log
file, simply runtail access.log
to see it.