Repo restructuring
@@ -1,64 +0,0 @@
|
|||||||
@WebAPI_HostAddress = http://localhost:5069
|
|
||||||
|
|
||||||
GET {{WebAPI_HostAddress}}/weatherforecast/
|
|
||||||
Accept: application/json
|
|
||||||
|
|
||||||
###
|
|
||||||
|
|
||||||
GET {{WebAPI_HostAddress}}/api/users
|
|
||||||
Accept: application/json
|
|
||||||
|
|
||||||
###
|
|
||||||
|
|
||||||
GET {{WebAPI_HostAddress}}/api/users/{{userId}}
|
|
||||||
Accept: application/json
|
|
||||||
|
|
||||||
###
|
|
||||||
|
|
||||||
GET {{WebAPI_HostAddress}}/api/users/by-username/{{username}}
|
|
||||||
Accept: application/json
|
|
||||||
|
|
||||||
###
|
|
||||||
|
|
||||||
GET {{WebAPI_HostAddress}}/api/users/by-email/{{email}}
|
|
||||||
Accept: application/json
|
|
||||||
|
|
||||||
###
|
|
||||||
|
|
||||||
POST {{WebAPI_HostAddress}}/api/users
|
|
||||||
Content-Type: application/json
|
|
||||||
Accept: application/json
|
|
||||||
|
|
||||||
{
|
|
||||||
"userAccountID": "00000000-0000-0000-0000-000000000000",
|
|
||||||
"username": "testuser",
|
|
||||||
"firstName": "Test",
|
|
||||||
"lastName": "User",
|
|
||||||
"email": "testuser@example.com",
|
|
||||||
"createdAt": "2025-01-01T00:00:00Z",
|
|
||||||
"updatedAt": null,
|
|
||||||
"dateOfBirth": "1990-01-01T00:00:00Z",
|
|
||||||
"timer": null
|
|
||||||
}
|
|
||||||
|
|
||||||
###
|
|
||||||
|
|
||||||
PUT {{WebAPI_HostAddress}}/api/users/{{userId}}
|
|
||||||
Content-Type: application/json
|
|
||||||
Accept: application/json
|
|
||||||
|
|
||||||
{
|
|
||||||
"userAccountID": "{{userId}}",
|
|
||||||
"username": "testuser",
|
|
||||||
"firstName": "Updated",
|
|
||||||
"lastName": "User",
|
|
||||||
"email": "testuser@example.com",
|
|
||||||
"createdAt": "2025-01-01T00:00:00Z",
|
|
||||||
"updatedAt": "2025-02-01T00:00:00Z",
|
|
||||||
"dateOfBirth": "1990-01-01T00:00:00Z",
|
|
||||||
"timer": null
|
|
||||||
}
|
|
||||||
|
|
||||||
###
|
|
||||||
|
|
||||||
DELETE {{WebAPI_HostAddress}}/api/users/{{userId}}
|
|
||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
## Overview
|
## Overview
|
||||||
|
|
||||||
The Biergarten App is evolving from a standalone full‑stack Next.js application into a multi‑project monorepo with a dedicated .NET backend and a SQL‑first approach. Backend data access is being refactored to use stored procedures, with future microservices planned for image upload, mapping, and possibly authentication. The Next.js site remains the frontend and will consume the .NET API.
|
The Biergarten App is evolving from a standalone full‑stack Next.js application into a multi‑project monorepo with a dedicated .NET backend and a SQL‑first approach. Backend data access is being refactored to use stored procedures. The Next.js site remains the frontend and will consume the .NET API.
|
||||||
|
|
||||||
Status note (Jan 26, 2026): Migration is in progress; some parts are still being moved from the website into the .NET layers.
|
Status note (Jan 26, 2026): Migration is in progress; some parts are still being moved from the website into the .NET layers.
|
||||||
|
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 203 KiB After Width: | Height: | Size: 203 KiB |
|
Before Width: | Height: | Size: 7.3 KiB After Width: | Height: | Size: 7.3 KiB |
|
Before Width: | Height: | Size: 26 KiB After Width: | Height: | Size: 26 KiB |
|
Before Width: | Height: | Size: 6.5 KiB After Width: | Height: | Size: 6.5 KiB |
|
Before Width: | Height: | Size: 515 B After Width: | Height: | Size: 515 B |
|
Before Width: | Height: | Size: 961 B After Width: | Height: | Size: 961 B |
|
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 15 KiB |
|
Before Width: | Height: | Size: 256 KiB After Width: | Height: | Size: 256 KiB |