Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 511 Bytes

README.md

File metadata and controls

37 lines (28 loc) · 511 Bytes

Diabetes Intellect

Run Locally

Clone the project

git clone https://github.com/aayush-jaiswal/diabetes-intellect-backend.git

Go to the project directory

cd diabetes-intellect-backend

Create virtual environment

python3 -m venv env
source env/bin/activate

Install dependencies

pip install -r requirements.txt

Make migrations

python3 manage.py makemigrations
python3 manage.py migrate

Start the server

python3 manage.py runserver