Game for Pragyan
- Clone the repository and move into that directory
- Create a virtual environment by
virtualenv env
- Activate the virtual environment
source env/bin/activate
- Run
pip install -r requirements.txt
to install requirements - Change directory to beerf
- Create a .env file and Set environment variables for MySQL database configuration by adding the following lines in the .env file
DB_USER=<user>
DB_PASSWORD=<password>
DB_NAME=<name>
- Run
python manage.py migrate
to initiate the database - Run
python manage.py runserver
to start local development server n