Table Of Contents
Python
Clone the project and navigate into the main project folder
Create A Virtual Environment
Run py -m venv venv in the command prompt in the main project folder for windows users
Activate the virtual environment by runing venv\Scripts\activate in the commant prompt for windows users
Run pip install -r requirements.txt in the commant prompt for windows users
Environment Variables
Create a .env file and put in it the following:
| Name | Value |
|---|---|
| SECRET_KEY | Click to here generate one |
| DEBUG | True |
Run these commands in the terminal
py manage.py makemigrations
py manage.py migrate
py manage.py runserver
Navigate to Api Documentation for api documentation
If you have no previous knowledge on Python or django here are links to their documentations:
Django Rest Framework Documentation