33 lines
1.8 KiB
Markdown
33 lines
1.8 KiB
Markdown
# Papa-Kind-Treff – Project Structure
|
||
|
||
Updated: 2026-08-10
|
||
|
||
## Main Directories
|
||
- `config/`: configuration, including `prod/` and `staging/`
|
||
- `partials/`: templates split into `landing/` and `structure/`
|
||
- `public/`: webroot, assets, and page entry points
|
||
- `src/`: backend and business logic
|
||
- `debug/`: debugging helpers and logs
|
||
- `api/`: technical endpoints
|
||
- `Internal/`: internal documentation in German and English
|
||
- `Internal/db/`: internal database schema
|
||
- `Internal/archive/`: archived former internal root files
|
||
|
||
## Current Structure Notes
|
||
- avatar management: `src/App/Avatar/AvatarManager.php`
|
||
- active avatar styles: `src/App/Avatar/Lorelei.php`, `src/App/Avatar/Croodles.php`
|
||
- profile/children/event/outing logic inside member area: `partials/landing/account/dashboard.php`
|
||
- consent and legal texts: `public/page/datenschutz.php`
|
||
- system settings: `src/App/SystemSettings.php`
|
||
- new listing/place base: `src/App/ListingCatalog.php`
|
||
- calendar export and subscribable feed: `src/App/CalendarSync.php` plus `public/page/calendar/export.php` and `public/page/calendar/feed.php`
|
||
- separated `Events` and `Outings` UI in member area: `partials/landing/account/dashboard.php`
|
||
- pricing, image upload, and place/address input for outings plus a reduced own-event form: `partials/landing/account/dashboard.php` with persistence in `src/App/ListingCatalog.php`
|
||
- legacy own events were extended in `src/App/AccountPages.php` and `Internal/db/schema.sql` with category and image fields
|
||
|
||
## Documentation Rule
|
||
- canonical internal documentation lives in `Internal/de/` and `Internal/en/`
|
||
- `README.md` in the project root remains as the startup document for new chats
|
||
- structural changes must always be documented in German and English in parallel
|
||
- former internal root documentation files now live under `Internal/archive/legacy-root-files/`
|