Real-time object detection powered by Django and TensorFlow
-
Clone the repository
git clone https://github.com/Kumala3/DjangoVision.git
-
Navigate to the project directory
cd django_vision -
Create a new virtual environment
python -m venv venv
-
Activate the virtual environment
- Windows:
venv\Scripts\activate
- MacOs/Linux:
source venv/bin/activate
-
-
Install dependencies
pip install -r requirements.txt
-
Rename
.env.distto.envand replace your environmental variablesExample:
django_vision/.envSECRET_KEY=Your_Django_Secret_Key DEBUG=False -
Run the project with daphne
daphne django_vision.asgi:application