Update file inclusion paths in multiple PHP files: Adjusted paths to use the new backend directory structure, ensuring consistent access to functions and configuration files across the application.

This commit is contained in:
𝓜𝓪𝓬𝓮™
2026-04-02 13:46:08 +02:00
parent b4ab365314
commit c8386a8f4b
34 changed files with 2879 additions and 25 deletions

31
backend/CONTRIBUTING.md Normal file
View File

@@ -0,0 +1,31 @@
# Contributing
## Commit Message Standard
Bitte nutze fuer alle Commits dieses Format:
`<type>: <kurze beschreibung>`
Beispiele:
- `feat: add product metadata for hero sections`
- `fix: correct vat calculation in checkout`
- `refactor: split product config helper functions`
## Erlaubte Typen
- `feat` neue Funktionalitaet
- `fix` Bugfix
- `refactor` Umstrukturierung ohne Verhaltensaenderung
- `docs` Dokumentation
- `test` Tests
- `chore` Wartung/Tooling
- `perf` Performance
- `build` Build/Dependencies
- `ci` CI/CD-Aenderungen
- `revert` Ruecknahme eines Commits
## Regeln
- Subjekt im Imperativ und klein beginnen.
- Keine Punkte am Ende der Commit-Betreffzeile.
- Optional Scope nutzen, wenn sinnvoll: `fix(api): ...`, `feat(config): ...`.