- Open the terminal and run the following command.
git clone https://github.com/rohit-rajput1/rangam.git
- Create a virtual environment using the following command.
#virtualenv -p python3 <environment-name>
virtualenv -p python3 venv
- Activate the created environment.
#source <environment-name>/bin/activate
source venv/bin/activate
- Deactivating the environment.
deactivate
- Install the dependencies using the following command.
pip install -r requirements.txt
- First migrate the database.
python manage.py migrate
- Run the server.
python manage.py runserver