Install all dependencies using conda package manager
Note: This will install the dependencies listed in
environments.ymlfile
$ cd backend
$ conda env create -f environment.ymlNow you can activate this environment using the following command
Note: You can run the app only if this environment is activated
$ conda activate attendance-systemnow rename .env.example to .env
Follow these steps to run the app in command line interface mode
- Activate the
attendance-systemconda environment - Launch
run_cli.pyfrom the backend directory
$ cd backend
$ conda activate attendance-system
$ python run_cli.pyFollow these steps to run the app in web server mode
- Activate the
attendance-systemconda environment - Launch
web_app.pyfrom the backend directory
$ cd backend
$ conda activate attendance-system
$ python web_app.pyInstall all front-end dependencies follow this command
Note: cd front-end
$ cd front-end- now rename env.example to .env
$ npm install
$ npm run dev