feat: deploy infrastructure + disk/drive, calendar, presentation, workspaces, onboarding, demo user

This commit is contained in:
2026-05-19 16:26:26 +03:00
parent 688d043dad
commit 3529c39b22
304 changed files with 18826 additions and 1176 deletions
+60
View File
@@ -0,0 +1,60 @@
services:
app:
build:
context: .
network: host
network_mode: host
env_file: .env
depends_on:
db:
condition: service_healthy
redis:
condition: service_started
volumes:
- ./logs:/app/logs
worker:
build:
context: .
network: host
network_mode: host
command: celery -A app.tasks worker -l info --concurrency=2
env_file: .env
depends_on:
- db
- redis
beat:
build:
context: .
network: host
network_mode: host
command: celery -A app.tasks beat -l info
env_file: .env
depends_on:
- db
- redis
db:
image: postgres:16-alpine
network_mode: host
environment:
POSTGRES_DB: voidea
POSTGRES_USER: voidea
POSTGRES_PASSWORD: ${DB_PASS:-voidea_pass}
command: -p 5444
volumes:
- pgdata:/var/lib/postgresql/data
healthcheck:
test: ["CMD-SHELL", "pg_isready -U voidea -h localhost -p 5444"]
interval: 5s
timeout: 5s
retries: 5
redis:
image: redis:7-alpine
network_mode: host
command: redis-server --port 6380
volumes:
pgdata: