π¨βπΌFoodServiceAPI
Introduction
FoodServiceAPI is a .NET application that utilizes .NET Core 8.0. It connects to a MySQL database for data storage, authentication is performed via JWT , and it utilizes Entity Framework Core for data access.
Requirements
To use FoodServiceAPI, you need to have:
Installation
Clone the repository:
git clone https://github.com/Org-FoodService/FoodServiceAPI.git
Open the project in Visual Studio or your preferred code editor.
Update the connection string in the
appsettings.json
file to match your SQLServer database configuration. For example:... "ConnectionStrings": { "DefaultConnection": "Server=NICOLAS-DESKTOP\\FOODSERVICE;Initial Catalog=foodservice;Integrated Security=True;Encrypt=True;TrustServerCertificate=True;Connection Timeout=30;" } ...
Build and run the application.
Last updated