πŸ‘¨β€πŸ’Ό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

  1. Clone the repository:

git clone https://github.com/Org-FoodService/FoodServiceAPI.git
  1. Open the project in Visual Studio or your preferred code editor.

  2. Update the connection string in the appsettings.json file to match your SQLServer database configuration. For example:

    appsettings.json
    ...
    "ConnectionStrings": {
        "DefaultConnection": "Server=NICOLAS-DESKTOP\\FOODSERVICE;Initial Catalog=foodservice;Integrated Security=True;Encrypt=True;TrustServerCertificate=True;Connection Timeout=30;"
    }
    ...
  3. Build and run the application.

Last updated