- Add comprehensive documentation (IMPLEMENTATION_COMPLETE, ProductionReady, QUICK_START, STARTUP_ANALYSIS) - Add startup scripts (start-server.sh, start-server.bat, check-setup.sh) - Add configs directory structure with README - Add ValidationGuards and Main.js backup - Add LLM monitoring HTML interface - Add cache templates and XML files - Add technical report (rapport_technique.md) - Add bundled code.js 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
41 lines
1.1 KiB
Markdown
41 lines
1.1 KiB
Markdown
# Configurations Modulaires
|
|
|
|
Ce dossier contient les configurations sauvegardées depuis l'interface web.
|
|
|
|
## Format des Fichiers
|
|
|
|
Chaque configuration est sauvegardée dans un fichier JSON avec le format suivant :
|
|
|
|
```json
|
|
{
|
|
"name": "config_standard_heavy",
|
|
"displayName": "Config Standard Heavy",
|
|
"config": {
|
|
"rowNumber": 2,
|
|
"selectiveStack": "standardEnhancement",
|
|
"adversarialMode": "heavy",
|
|
"humanSimulationMode": "standardSimulation",
|
|
"patternBreakingMode": "standardPatternBreaking",
|
|
"saveIntermediateSteps": true,
|
|
"source": "web_interface"
|
|
},
|
|
"createdAt": "2025-10-08T14:30:00.000Z",
|
|
"updatedAt": "2025-10-08T14:30:00.000Z"
|
|
}
|
|
```
|
|
|
|
## Utilisation
|
|
|
|
Les configurations sont gérées via l'interface web :
|
|
|
|
- **Créer** : `config-editor.html` → Bouton "Sauvegarder"
|
|
- **Charger** : Dropdown "Charger une configuration"
|
|
- **Supprimer** : Bouton "Supprimer" après sélection
|
|
- **Utiliser** : `production-runner.html` → Sélectionner config + Run
|
|
|
|
## Stockage
|
|
|
|
- Format : JSON
|
|
- Nom fichier : Nom de config sanitizé (caractères alphanumériques + `-` + `_`)
|
|
- Backend : `lib/ConfigManager.js`
|