.NET6.0 Webapp for storing, adding and managing culinary recipes
- Cookie authorization and authentication
- SqlDb or mssqllocaldb
- Responsive design
Connection string location AppDbContext.cs
For custom database connection edit one following strings and recompile the app.
string localConnection
string sqlConnection
...
optionsBuilder.UseSqlServer(localConnection);
password: zaq1@WSX
username: Adam
GET /api/
GET /api/${id}
GET /api/category/${id}
GET /api/author/${id}
Clone the project
git clone https://github.com/net-runner/recipelib
Go to the project directory or test directory
cd RecipeLib.App
Install dependencies
dotnet build
Update database
dotnet ef database update
Start the server
dotnet run or dotnet watch