feat: fetch views manually and worker

This commit is contained in:
Artem Tsyrulnikov
2025-11-12 23:55:44 +03:00
parent 292bb0d49b
commit a48d5e67cb
28 changed files with 632 additions and 135 deletions

View File

@@ -1,21 +1,26 @@
services:
backend:
build:
context: .
args:
GIT_COMMIT: ${GIT_COMMIT:-unknown}
env_file:
- .env
ports:
- "8000:8000"
depends_on:
- postgres
# backend:
# build:
# context: .
# args:
# GIT_COMMIT: ${GIT_COMMIT:-unknown}
# env_file:
# - .env
# ports:
# - "8000:8000"
# depends_on:
# - postgres
postgres:
image: postgres
image: postgres:17-alpine
environment:
POSTGRES_USER: "user"
POSTGRES_PASSWORD: "password"
POSTGRES_DB: "tgex"
ports:
- "5432:5432"
volumes:
- postgres_data:/var/lib/postgresql/data
volumes:
postgres_data: