feat: plantilla base workspace SaaS
Some checks failed
Build Producción & Push a Harbor / test (push) Failing after 3s
Build Producción & Push a Harbor / build (push) Has been skipped
Aduanasoft/plantillas-proyectos/pipeline/head There was a failure building this commit

This commit is contained in:
2026-07-21 13:59:00 -05:00
commit bdd089954b
470 changed files with 70022 additions and 0 deletions

29
backend/setup.cfg Normal file
View File

@@ -0,0 +1,29 @@
[coverage:run]
# Medir solo código fuente de la aplicación, no alembic, tests, ni artefactos
source =
api
core
omit =
*/alembic/*
*/tests/*
*/uploads/*
*/layouts/*
*/celerybeat-schedule*
main.py
*/__init__.py
[coverage:report]
omit =
*/alembic/*
*/tests/*
*/uploads/*
*/layouts/*
*/celerybeat-schedule*
main.py
*/__init__.py
# Excluir líneas de defensa estándar que no son alcanzables en tests
exclude_lines =
pragma: no cover
if __name__ == .__main__.:
raise NotImplementedError