Kenton1989 / lab-attendance-system-backend

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

lab-attendance-system-backend

Installation (for Linux (Ubuntu) only)

  1. Clone and enter the repo
git clone https://github.com/Kenton1989/lab-attendance-system-backend.git
cd lab-attendance-system-backend
  1. Open the file deployment/init-database.sql, find the following line, and change the password between the quotes. This is the password of the user that will be used by the backend server to access the database. Remember your new password, you will use it again in the next step.
IDENTIFIED BY 'Pa$$w0rd123'; -- TODO: CHANGE THE PASSWORD ON THIS LINE !!
  1. Run the deployment script, it will install everything needed (hopefully) and start the backend server on 127.0.0.1:8000. Please follow the prompt and enter the required information, including asking password for sudo operation confirmation of installing package, the password of database user, etc.
bash ./deployment/be-full-deploy.sh
  1. Create a admin user if necessary. Please follow the prompt and enter the required information like username, password, etc.
python3 ./manage.py create_las_admin
  1. Populate some dummy data if needed. It will randomly populate many data, including user, course, group, session, etc.
python3 ./manage.py populate_dummy
  1. To find out the running lab_attendance_system_backend process, you can try the following command. After knowing the PID of backend server process, you can just use sudo kill {PID} to stop the backend server.
ps aux | grep lab_attendance_system_backend
  1. If you have killed the server process and want to restart it, please run the quick deployment script, which will directly start the server and not go through installation steps.
bash ./deployment/be-quick-deploy.sh

About

License:MIT License


Languages

Language:Python 96.0%Language:Shell 2.8%Language:HTML 1.2%