Admin site of Study Abacus to handle all the student data
- Install virtual environment
pip install virtualenv- Create a virtual environment named env using the following command
virtualenv env -p python3- To activate the virtual environment in Windows, run:
env\Scripts\activate.bat- To activate the virtual environment in Linux or MacOS, run:
source env/bin/activate- Run the following command to install the dependencies
pip install -r requirements.txt- Create .env file with
- SECRET_KEY
- DEBUG
- ALLOWED_HOSTS (separated by comma)
Check Example .env file
python manage.py makemigrations
python manage.py migrate
python manage.py runserverTo stop the server, press Ctrl + C and deactivate the virtual environmenat using deactivate command.`