Skip to content

Latest commit

 

History

History
28 lines (17 loc) · 1.01 KB

README.md

File metadata and controls

28 lines (17 loc) · 1.01 KB

Ha Eötvösös vagy kattints ide!

Menza

Blazor app that displays the school lunch menu and lets you rate it.

Thumbnail

The backend is an ASP.NET Core Web API that stores and serves the menus and ratings. It extracts the menu from the school's lunch system automatically.

The frontend is a hosted Blazor WebAssembly app.

Running locally

# Install the .NET 7 SDK. Instructions for other platforms can be found at https://learn.microsoft.com/dotnet/core/install
winget install Microsoft.DotNet.SDK.7

git clone https://github.com/albi005/Menza.git
cd Menza
dotnet run --project Menza.Server

The app should now be reachable at http://localhost:7180.

The logic for loading the menus is in the Menza.Server/UpdateService.cs file.

There is email filtering when signing up, which can be removed or updated in Menza.Server/AuthService.cs and Menza.Client/AuthService.cs.