This commit includes: - Django backend with multi-tenancy (django-tenants) - React + TypeScript frontend with Vite - Platform administration API with role-based access control - Authentication system with token-based auth - Quick login dev tools for testing different user roles - CORS and CSRF configuration for local development - Docker development environment setup 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
71 lines
1.7 KiB
YAML
71 lines
1.7 KiB
YAML
volumes:
|
|
smoothschedule_local_postgres_data: {}
|
|
smoothschedule_local_postgres_data_backups: {}
|
|
smoothschedule_local_redis_data: {}
|
|
|
|
services:
|
|
django: &django
|
|
build:
|
|
context: .
|
|
dockerfile: ./compose/local/django/Dockerfile
|
|
image: smoothschedule_local_django
|
|
container_name: smoothschedule_local_django
|
|
depends_on:
|
|
- postgres
|
|
- redis
|
|
volumes:
|
|
- /app/.venv
|
|
- .:/app:z
|
|
env_file:
|
|
- ./.envs/.local/.django
|
|
- ./.envs/.local/.postgres
|
|
ports:
|
|
- '8000:8000'
|
|
command: /start
|
|
|
|
postgres:
|
|
build:
|
|
context: .
|
|
dockerfile: ./compose/production/postgres/Dockerfile
|
|
image: smoothschedule_production_postgres
|
|
container_name: smoothschedule_local_postgres
|
|
volumes:
|
|
- smoothschedule_local_postgres_data:/var/lib/postgresql/data
|
|
- smoothschedule_local_postgres_data_backups:/backups
|
|
env_file:
|
|
- ./.envs/.local/.postgres
|
|
|
|
redis:
|
|
image: docker.io/redis:7.2
|
|
container_name: smoothschedule_local_redis
|
|
volumes:
|
|
- smoothschedule_local_redis_data:/data
|
|
|
|
celeryworker:
|
|
<<: *django
|
|
image: smoothschedule_local_celeryworker
|
|
container_name: smoothschedule_local_celeryworker
|
|
depends_on:
|
|
- redis
|
|
- postgres
|
|
ports: []
|
|
command: /start-celeryworker
|
|
|
|
celerybeat:
|
|
<<: *django
|
|
image: smoothschedule_local_celerybeat
|
|
container_name: smoothschedule_local_celerybeat
|
|
depends_on:
|
|
- redis
|
|
- postgres
|
|
ports: []
|
|
command: /start-celerybeat
|
|
|
|
flower:
|
|
<<: *django
|
|
image: smoothschedule_local_flower
|
|
container_name: smoothschedule_local_flower
|
|
ports:
|
|
- '5555:5555'
|
|
command: /start-flower
|