|
|
6 месяцев назад | |
|---|---|---|
| .github | 6 месяцев назад | |
| .vscode | 6 месяцев назад | |
| Controllers | 6 месяцев назад | |
| Data | 6 месяцев назад | |
| Models | 6 месяцев назад | |
| Properties | 6 месяцев назад | |
| ViewModels | 6 месяцев назад | |
| Views | 6 месяцев назад | |
| bin | 6 месяцев назад | |
| obj | 6 месяцев назад | |
| publish | 6 месяцев назад | |
| wwwroot | 6 месяцев назад | |
| Program.cs | 6 месяцев назад | |
| README.md | 6 месяцев назад | |
| Recepie.csproj | 6 месяцев назад | |
| Recepie.sln | 6 месяцев назад | |
| appsettings.Development.json | 6 месяцев назад | |
| appsettings.json | 6 месяцев назад |
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.