This Django project is designed for urine strip analysis.
- Clone the repository:
git clone <repository_url>
cd urine_strip_project
- Create and activate a virtual environment (optional but recommended):
# ensure that you have virtualenv installed in your system globally
virtualenv env
source env/bin/activate # On Windows use env\Scripts\activate
- Install dependencies:
pip install -r requirements.txt
Start the development server:
python manage.py runserver
The server will be running at http://localhost:8000
by default.