Add .gitignore file and update README and implementation plan documentation

This commit is contained in:
2025-10-20 17:03:45 +02:00
parent 328910a985
commit ebac14cbb2
3 changed files with 41 additions and 9 deletions

View File

@@ -6,7 +6,7 @@
1. Create `models/scenario.py` for DB interactions.
2. Implement API endpoints in `routes/scenarios.py`: GET, POST, PUT, DELETE.
3. Add frontend component `components/ScenarioForm.vue` for CRUD.
3. Add frontend component `components/ScenarioForm.html` for CRUD.
4. Update `README.md` with API docs.
## Feature: Parameter Input and Validation
@@ -15,7 +15,7 @@
1. Define parameter schemas in `models/parameters.py`.
2. Create validation middleware in `middleware/validation.py`.
3. Build input form in `components/ParameterInput.vue`.
3. Build input form in `components/ParameterInput.html`.
4. Integrate with scenario management.
## Feature: Monte Carlo Simulation Run
@@ -32,7 +32,7 @@
### Reporting Implementation Steps
1. Create report service `services/reporting.py`.
2. Build dashboard component `components/Dashboard.vue`.
2. Build dashboard component `components/Dashboard.html`.
3. Fetch data from simulation results.
4. Add charts using Chart.js.