This commit is contained in:
Marek Lenczewski
2026-04-11 13:02:40 +02:00
parent 11eff12da8
commit d8c8db4a4c
4 changed files with 57 additions and 76 deletions

33
base.md Normal file
View File

@@ -0,0 +1,33 @@
# Datei
Fundament/Vision - WAS gebaut wird
# Software
- Base software with 3 Apps
- Each App has definitions in Symfony, Vue and Kotlin
- Task Manager App - Manage tasks with categories, auto generate tasks with task schemas
- Shopping List App - Manage list for shopping
- Meal Planner App - Manage meals, assign meals to days, generate shopping list from assigned meals
# Systems
- Symfony - Backend with Rest API
- Vue - Frontend for browser
- Kotlin - Frontend for mobile (later)
- Ddev - Dev environment
- MariaDB - Database
- Doctrine - ORM
- Nelmio CORS - CORS for vue api
- Jetpack Compose - Kotlin components
# Database
## Task Manager
- Task (id, name, date, status, category, schema)
- TaskSchema (id, name, category, type, start, end)
- Category (id, name, color)
## Shopping List
- Item (id, name, unit) - Items
- ItemList (id, list, item, quantity, status) - Items for shopping list
- ShoppingList (id) - Shopping list
## Meal Planner
- Meal (id, title, description) - Meals
- ItemMeal (id, meal, item, quantity) - items with meals
- MealDate (id, meal, date) - Meals for date