alternative-backend-service/users
saani d736c1681c # Commit Message
```
refactor: update settings and Docker config for production

- Configure ALLOWED_HOSTS and CORS from environment variables for better security
- Switch default database from PostgreSQL to SQLite3 (PostgreSQL config commented)
- Simplify DEBUG environment variable handling
- Update Dockerfile to use Python 3.11 and gunicorn for production
- Add static file collection in Docker build process
- Add user appointment statistics endpoint (user_apointment_stats)
- Add .dockerignore to exclude unnecessary files from build

These changes improve production readiness by making critical settings
configurable via environment variables and using production-grade WSGI
server (gunicorn) instead of Django development server.
2025-11-23 23:06:17 +00:00
..
migrations feat: add user management endpoints and update appointment model 2025-11-23 13:55:04 +00:00
__init__.py Add initial Django project structure with user authentication and profile management 2025-11-12 11:51:27 +00:00
admin.py Implement user model with custom user manager and update admin serializers 2025-11-13 00:52:34 +00:00
apps.py Add initial Django project structure with user authentication and profile management 2025-11-12 11:51:27 +00:00
backends.py Add initial Django project structure with user authentication and profile management 2025-11-12 11:51:27 +00:00
managers.py # Commit Message 2025-11-23 23:06:17 +00:00
models.py feat: add HIPAA-compliant email and OTP authentication system 2025-11-22 02:19:44 +00:00
serializers.py feat: add user management endpoints and update appointment model 2025-11-23 13:55:04 +00:00
tests.py Add initial Django project structure with user authentication and profile management 2025-11-12 11:51:27 +00:00
urls.py feat: add user management endpoints and update appointment model 2025-11-23 13:55:04 +00:00
utils.py feat: add HIPAA-compliant email and OTP authentication system 2025-11-22 02:19:44 +00:00
views.py feat: add user management endpoints and update appointment model 2025-11-23 13:55:04 +00:00