chore: initial import

This commit is contained in:
chelsea
2025-11-11 23:11:59 -06:00
parent 7598942bc5
commit c15fe83651
28 changed files with 3755 additions and 4 deletions

22
docker-compose.yml Normal file
View File

@@ -0,0 +1,22 @@
version: "3.8"
services:
adhdbot:
build: .
env_file:
- .env
volumes:
- ./memory:/app/memory
ports:
- "8000:8000"
restart: unless-stopped
agentic_worker:
build: .
command: ["python", "agentic_worker.py"]
env_file:
- .env
volumes:
- ./memory:/app/memory
restart: unless-stopped
depends_on:
- adhdbot