Enable Discovery debug logging for production troubleshooting

- Add DISCOVERY_LOG_LEVEL=debug
- Add DISCOVERY_SHOW_PROGRESS=true
- Temporary changes for debugging InitializerProcessor fixes on production
This commit is contained in:
2025-08-11 20:13:26 +02:00
parent 59fd3dd3b1
commit 55a330b223
3683 changed files with 2956207 additions and 16948 deletions

View File

@@ -0,0 +1,40 @@
# Michael Schiemer API
API documentation for Michael Schiemer's custom PHP framework
**Version:** 1.0.0
## Endpoints
### GET /api/users
List all users
Retrieve a paginated list of all users in the system
**Parameters:**
- `page` (query) - Page number for pagination (optional)
- `limit` (query) - Number of items per page (optional)
- `search` (query) - Search term to filter users (optional)
**Responses:**
- `200` - List of users retrieved successfully
- `401` - Unauthorized - Invalid or missing authentication token
---
### POST /kontakt
Submit contact form
Submit a contact form message
**Responses:**
- `200` - Contact form submitted successfully
- `400` - Validation error - Invalid form data
---