añadido karpathy y refactorizacion del proyecto

This commit is contained in:
2026-05-25 19:48:56 +02:00
parent 8feb88dfa6
commit ee8cfa03ea
1225 changed files with 875463 additions and 5909 deletions
+26
View File
@@ -0,0 +1,26 @@
# Autotest - Editor Web + Backend
# Run with: docker compose up -d --build
#
# Access at: http://localhost:4321
# YAML files are mounted via bind mounts (testcases/ and testplans/)
services:
autotest:
build:
context: .
dockerfile: Dockerfile
container_name: autotest
restart: unless-stopped
ports:
- "4321:4321"
volumes:
# Bind mounts so YAML files are persisted and visible from host (good for git + backups)
- ./testcases:/app/testcases
- ./testplans:/app/testplans
# Optional: also persist generated outputs if you want them outside the container
- ./output:/app/output
environment:
- NODE_ENV=production
- PORT=4321
# Uncomment the next line if you want to see live logs during development
# tty: true