diff --git a/.dockerignore b/.dockerignore index 58f5247..6613c12 100644 --- a/.dockerignore +++ b/.dockerignore @@ -38,5 +38,4 @@ tmp/ temp/ README.md -LICENSE init-db.sql diff --git a/README.md b/README.md index 1325045..6999974 100644 --- a/README.md +++ b/README.md @@ -167,8 +167,12 @@ FocusApp/ ├── client/ # React Frontend (TypeScript, Vite) │ ├── src/ │ │ ├── components/ # React Komponenten +│ │ │ ├── TaskCard.tsx +│ │ │ └── TaskForm.tsx +│ │ ├── styles/ # CSS Design System │ │ ├── App.tsx # Haupt-App │ │ ├── api.ts # Axios API Client +│ │ ├── types.ts # TypeScript Types │ │ └── main.tsx # Entry Point │ ├── build/ # Production Build │ └── package.json @@ -179,13 +183,18 @@ FocusApp/ ├── Models/ │ ├── FocusTask.cs # Domain Model │ └── Dtos.cs # API Data Transfer Objects +├── Properties/ ├── Program.cs # ASP.NET Startup ├── FocusApp.csproj # Projekt-Datei +├── FocusApp.sln # Solution File +├── Directory.Build.props ├── appsettings.json # Config ├── Dockerfile # Multi-Stage Docker Build ├── docker-compose.yml # Docker Compose Konfiguration ├── .env.example # Environment Template -└── init-db.sql # MariaDB Init Script +├── init-db.sql # MariaDB Init Script +├── LICENSE # MIT License +└── renovate.json # Dependency Updates ``` ## 🐛 Troubleshooting