feat: finalize production cleanup with structured agent responses and project governance

This commit is contained in:
Space-Banane
2026-05-27 18:08:52 +02:00
parent a19b285232
commit c09f0ee9c0
17 changed files with 737 additions and 126 deletions

17
docker-compose.yml Normal file
View File

@@ -0,0 +1,17 @@
services:
screenjob:
image: python:3.11-slim
working_dir: /app
env_file:
- .env
environment:
SCREENJOB_HOST: 0.0.0.0
SCREENJOB_PORT: 8787
volumes:
- ./:/app
ports:
- "8787:8787"
command: >
sh -c "pip install --no-cache-dir -r requirements.txt &&
python main.py server"
restart: unless-stopped