mirror of
https://github.com/skoelle/focusapp.git
synced 2026-09-17 20:10:25 +00:00
fix docker build
This commit is contained in:
@@ -38,5 +38,4 @@ tmp/
|
|||||||
temp/
|
temp/
|
||||||
|
|
||||||
README.md
|
README.md
|
||||||
LICENSE
|
|
||||||
init-db.sql
|
init-db.sql
|
||||||
|
|||||||
@@ -167,8 +167,12 @@ FocusApp/
|
|||||||
├── client/ # React Frontend (TypeScript, Vite)
|
├── client/ # React Frontend (TypeScript, Vite)
|
||||||
│ ├── src/
|
│ ├── src/
|
||||||
│ │ ├── components/ # React Komponenten
|
│ │ ├── components/ # React Komponenten
|
||||||
|
│ │ │ ├── TaskCard.tsx
|
||||||
|
│ │ │ └── TaskForm.tsx
|
||||||
|
│ │ ├── styles/ # CSS Design System
|
||||||
│ │ ├── App.tsx # Haupt-App
|
│ │ ├── App.tsx # Haupt-App
|
||||||
│ │ ├── api.ts # Axios API Client
|
│ │ ├── api.ts # Axios API Client
|
||||||
|
│ │ ├── types.ts # TypeScript Types
|
||||||
│ │ └── main.tsx # Entry Point
|
│ │ └── main.tsx # Entry Point
|
||||||
│ ├── build/ # Production Build
|
│ ├── build/ # Production Build
|
||||||
│ └── package.json
|
│ └── package.json
|
||||||
@@ -179,13 +183,18 @@ FocusApp/
|
|||||||
├── Models/
|
├── Models/
|
||||||
│ ├── FocusTask.cs # Domain Model
|
│ ├── FocusTask.cs # Domain Model
|
||||||
│ └── Dtos.cs # API Data Transfer Objects
|
│ └── Dtos.cs # API Data Transfer Objects
|
||||||
|
├── Properties/
|
||||||
├── Program.cs # ASP.NET Startup
|
├── Program.cs # ASP.NET Startup
|
||||||
├── FocusApp.csproj # Projekt-Datei
|
├── FocusApp.csproj # Projekt-Datei
|
||||||
|
├── FocusApp.sln # Solution File
|
||||||
|
├── Directory.Build.props
|
||||||
├── appsettings.json # Config
|
├── appsettings.json # Config
|
||||||
├── Dockerfile # Multi-Stage Docker Build
|
├── Dockerfile # Multi-Stage Docker Build
|
||||||
├── docker-compose.yml # Docker Compose Konfiguration
|
├── docker-compose.yml # Docker Compose Konfiguration
|
||||||
├── .env.example # Environment Template
|
├── .env.example # Environment Template
|
||||||
└── init-db.sql # MariaDB Init Script
|
├── init-db.sql # MariaDB Init Script
|
||||||
|
├── LICENSE # MIT License
|
||||||
|
└── renovate.json # Dependency Updates
|
||||||
```
|
```
|
||||||
|
|
||||||
## 🐛 Troubleshooting
|
## 🐛 Troubleshooting
|
||||||
|
|||||||
Reference in New Issue
Block a user