An alternative backend built using another programming language.
Go to file
saani e722cbe311 refactor(docker): replace uv with pip and move Django commands to runtime
Replace uv package manager with standard pip for dependency management.
Switch base image from debian:bookworm-slim to python:3.12-slim to include
Python runtime by default.

Key changes:
- Remove uv installation and configuration
- Use requirements.txt instead of pyproject.toml/uv.lock
- Install dependencies with pip instead of uv sync
- Move collectstatic and migrate from build-time to runtime in CMD
- Simplify gunicorn command invocation

This simplifies the build process and makes the image more portable by
using standard Python tooling. Running migrations and collectstatic at
container startup ensures they execute against the correct database and
storage backend.
2025-11-23 19:12:27 +00:00
booking_system feat: migrate to UV package manager and enhance production config 2025-11-23 18:36:23 +00:00
meetings feat: add user management endpoints and update appointment model 2025-11-23 13:55:04 +00:00
templates refactor(email): improve email service implementation and templates 2025-11-23 00:27:44 +00:00
users feat: add user management endpoints and update appointment model 2025-11-23 13:55:04 +00:00
.env.example Add initial Django project structure with user authentication and profile management 2025-11-12 11:51:27 +00:00
.gitignore feat: enable meetings app and simplify development configuration 2025-11-23 00:19:26 +00:00
dockerfile refactor(docker): replace uv with pip and move Django commands to runtime 2025-11-23 19:12:27 +00:00
manage.py Add initial Django project structure with user authentication and profile management 2025-11-12 11:51:27 +00:00
requirements.txt chore: update project dependencies 2025-11-23 17:05:10 +00:00