This commit is contained in:
xds
2026-03-22 12:40:33 +03:00
commit 28a5d51389
61 changed files with 6085 additions and 0 deletions

20
docker-compose.yml Normal file
View File

@@ -0,0 +1,20 @@
version: "3.8"
services:
backend:
build: ./backend
network_mode: host
environment:
DATABASE_URL: ${DATABASE_URL:-postgresql+asyncpg://print3d:print3d_secret@localhost:5432/print3d}
GOOGLE_API_KEY: ${GOOGLE_API_KEY:-}
TELEGRAM_BOT_TOKEN: ${TELEGRAM_BOT_TOKEN:-}
TELEGRAM_CHAT_ID: ${TELEGRAM_CHAT_ID:-}
MINIO_ENDPOINT: localhost:9000
MINIO_ACCESS_KEY: admin
MINIO_SECRET_KEY: SuperSecretPassword123!
MINIO_BUCKET: ${MINIO_BUCKET:-filam3d}
MINIO_SECURE: ${MINIO_SECURE:-false}
frontend:
build: ./frontend
network_mode: host