Initial commit: VoIdeaAI - voice-first AI idea assistant

This commit is contained in:
2026-05-13 12:51:42 +03:00
commit 688d043dad
421 changed files with 47915 additions and 0 deletions
+41
View File
@@ -0,0 +1,41 @@
services:
app:
build: .
ports:
- "8020:8020"
env_file: .env
depends_on:
db:
condition: service_healthy
redis:
condition: service_started
volumes:
- ./logs:/app/logs
worker:
build: .
command: celery -A app.tasks worker -l info
env_file: .env
depends_on:
- db
- redis
db:
image: postgres:14
environment:
POSTGRES_DB: voidea
POSTGRES_USER: voidea
POSTGRES_PASSWORD: ${DB_PASS}
volumes:
- pgdata:/var/lib/postgresql/data
healthcheck:
test: ["CMD-SHELL", "pg_isready -U voidea"]
interval: 5s
timeout: 5s
retries: 5
redis:
image: redis:7
volumes:
pgdata: