A Django-based web application for healthcare management.
- Python 3.8 or higher
- pip (Python package installer)
- Virtual environment (recommended)
git clone <repository-url>
cd harakacarepython -m venv venv
.\venv\Scripts\activatepython3 -m venv venv
source venv/bin/activatepip install -e .Create a .env file in the project root and add the following variables:
DEBUG=True
SECRET_KEY=your-secret-key-here
python manage.py migratepython manage.py createsuperuserpython manage.py runserverVisit http://127.0.0.1:8000/ in your browser to view the application.
apps/: Contains all Django applicationsharakacare/: Main project configurationtemplates/: HTML templatesstatic/: Static files (CSS, JavaScript, images)media/: User-uploaded filestests/: Test files
python manage.py testThis project follows PEP 8 style guidelines. Before committing, please ensure your code is properly formatted.
For production deployment, make sure to:
- Set
DEBUG=Falsein your environment variables - Configure a proper database (PostgreSQL recommended)
- Set up a proper web server (Nginx + Gunicorn recommended)
- Configure proper static files handling
[Specify your license here]