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