añadido guidelines de karpathy y repensado del proyecto

This commit is contained in:
2026-05-25 19:28:58 +02:00
parent 8c594f8ddf
commit d95ed15766
51 changed files with 637 additions and 1215 deletions
+4 -4
View File
@@ -4,16 +4,16 @@ help:
@echo "Targets: install lint format test test-all smoke up down logs clean"
install:
pip install -r core/requirements.txt -r dashboard/requirements.txt
pip install -r core/requirements.txt
pip install pytest pytest-asyncio ruff mypy freezegun
lint:
ruff check core/src dashboard/src tests
ruff check core/src tests
mypy core/src
format:
ruff format core/src dashboard/src tests
ruff check --fix core/src dashboard/src tests
ruff format core/src tests
ruff check --fix core/src tests
test:
pytest tests/unit -v