|
|
há 5 meses atrás | |
|---|---|---|
| .github | há 5 meses atrás | |
| .vscode | há 6 meses atrás | |
| Controllers | há 5 meses atrás | |
| Data | há 5 meses atrás | |
| Models | há 5 meses atrás | |
| Properties | há 6 meses atrás | |
| ViewModels | há 5 meses atrás | |
| Views | há 5 meses atrás | |
| bin | há 5 meses atrás | |
| obj | há 5 meses atrás | |
| publish | há 5 meses atrás | |
| wwwroot | há 6 meses atrás | |
| Program.cs | há 6 meses atrás | |
| README.md | há 6 meses atrás | |
| Recepie.csproj | há 6 meses atrás | |
| Recepie.sln | há 6 meses atrás | |
| appsettings.Development.json | há 6 meses atrás | |
| appsettings.json | há 6 meses atrás | |
| week_planner_migration.sql | há 5 meses atrás |
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.