inital commit

This commit is contained in:
2026-05-17 18:29:30 -05:00
parent b827236fe2
commit 7c1e18bd59
4683 changed files with 159402 additions and 1 deletions

17
docker-compose.yml Normal file
View File

@@ -0,0 +1,17 @@
services:
web:
build: .
container_name: demo-sites-builder
command: ["bash", "/app/docker/entrypoint.sh"]
ports:
- "8014:8014"
volumes:
- .:/app
environment:
PORT: "8014"
DJANGO_DEBUG: "1"
DJANGO_SECRET_KEY: "dev-only-secret-key-change-me"
OLLAMA_URL: "http://host.docker.internal:11434"
OLLAMA_MODEL: "llama3.1"
extra_hosts:
- "host.docker.internal:host-gateway"