A Django-based backend application for the Kowiz project.
kowiz-backend/
├── src/
│ ├── config/ # Django project configuration
│ │ ├── settings.py # Main settings file
│ │ ├── urls.py # URL routing
│ │ ├── wsgi.py # WSGI configuration
│ │ └── asgi.py # ASGI configuration
│ ├── kowiz_backend/ # Main application package
│ └── manage.py # Django management script
├── tests/ # Test files
└── pyproject.toml # Project dependencies
- Python >= 3.10
- Django >= 5.2.3
-
Clone the repository:
git clone <repository-url> cd kowiz-backend
-
Install dependencies:
poetry install
-
Run migrations:
cd src python manage.py migrate -
Create a superuser (optional):
python manage.py createsuperuser
cd src
python manage.py runserverThe server will start at http://127.0.0.1:8000/
Access the Django admin interface at http://127.0.0.1:8000/admin/
- adib-the-noob - [email protected]
This project is currently without