|
|
vor 5 Monaten | |
|---|---|---|
| .github | vor 5 Monaten | |
| .vscode | vor 6 Monaten | |
| Controllers | vor 5 Monaten | |
| Data | vor 5 Monaten | |
| Models | vor 5 Monaten | |
| Properties | vor 6 Monaten | |
| ViewModels | vor 5 Monaten | |
| Views | vor 5 Monaten | |
| bin | vor 5 Monaten | |
| obj | vor 5 Monaten | |
| publish | vor 5 Monaten | |
| wwwroot | vor 6 Monaten | |
| Program.cs | vor 6 Monaten | |
| README.md | vor 6 Monaten | |
| Recepie.csproj | vor 6 Monaten | |
| Recepie.sln | vor 6 Monaten | |
| appsettings.Development.json | vor 6 Monaten | |
| appsettings.json | vor 6 Monaten | |
| week_planner_migration.sql | vor 5 Monaten |
A C# ASP.NET Core MVC web application for managing your personal recipe collection with advanced search and filtering capabilities.
The application connects to a MySQL database with the following configuration:
Run the application:
dotnet run
Open your web browser and navigate to http://localhost:5104
dotnet build Recepie.sln
Recepie/
├── Controllers/
│ └── RecipeController.cs # Main controller with search/filter logic
├── Data/
│ └── RecipeContext.cs # Entity Framework DbContext
├── Models/
│ └── Recipe.cs # Recipe entity model
├── ViewModels/
│ └── RecipeIndexViewModel.cs # ViewModel for index page
├── Views/
│ ├── Recipe/
│ │ ├── Index.cshtml # Main recipe listing with search/filter
│ │ ├── Details.cshtml # Recipe details view
│ │ ├── Create.cshtml # Add new recipe form
│ │ ├── Edit.cshtml # Edit recipe form
│ │ └── Delete.cshtml # Delete confirmation
│ └── Shared/
│ └── _Layout.cshtml # Main layout template
└── wwwroot/
└── css/
└── site.css # Custom styling
Use the left sidebar to:
The Recipe entity includes:
This is a personal recipe management application. Feel free to customize it for your needs!
This project is for personal use.