AttendaceSystem is a software made for taking the attendace of some given class (face-to-face, online, bimodal) taking into account the Zero Paper policy. Made with NodeJS, React and MariaDB
Copy the url in this repo and open a new terminal in your workspace
git clone [URL]
then
npm install
create a variables.env file as follows in the parent directory
# COOKIE KEY
COOKIE_KEY = 'Please hide this key, so the Cookie Monster cant eat it'
#DATABASE
DATABASE_NAME = 'attendancesystem'
DATABASE_HOST = 'localhost'
DATABASE_USERNAME = 'root'
DATABASE_PASSWORD = '[YOUR DBMS PASSWORD]'
# MODE BY DEFAULT
NODE_ENV = 'development'
open up your terminal and run
npm run dev