Files
DoC/.gitignore
T
Alexis 1ebc5b6634 feat: add manual numeric inputs for fuzzy modeling and update env config
- Implement synchronized numeric inputs alongside sliders in Step 2.
- Enable real-time graph updates via input arrows and manual typing.
- Add strict clamping and validation for fuzzy parameter constraints.
- Refactor environment variables to use .env.local pattern.
- Add .env.example files for frontend and backend documentation.
2026-04-27 13:16:42 +02:00

15 lines
343 B
Plaintext

# Caché de Python
__pycache__/
*.py[cod]
*$py.class
# Variables de entorno (solo ignoramos las locales/sobre-escrituras)
# Mantenemos .env y .env.example versionados para compartir la configuración
# de producción y el esqueleto de variables. Nunca subimos .env.local.
.env.local
.env.*.local
# Configuraciones del editor
.vscode/
.idea/