-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathwebfrontend.http
More file actions
40 lines (27 loc) · 774 Bytes
/
webfrontend.http
File metadata and controls
40 lines (27 loc) · 774 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
### BuildWithAspire Web Frontend
### Base URL: https://localhost:7051 or http://localhost:5005
@baseUrl = https://localhost:7051
@httpBaseUrl = http://localhost:5005
### Home Page
GET {{baseUrl}}/
### Chat Page
GET {{baseUrl}}/chat
### Chat with specific conversation (replace with actual ID)
@conversationId = 12345678-1234-1234-1234-123456789012
GET {{baseUrl}}/chat/{{conversationId}}
### Weather Page
GET {{baseUrl}}/weather
### === Static Resources ===
### App CSS
GET {{baseUrl}}/app.css
### Bootstrap CSS
GET {{baseUrl}}/bootstrap/bootstrap.min.css
### Blazor Framework
GET {{baseUrl}}/_framework/blazor.web.js
### === Health Checks ===
### Health Check
GET {{baseUrl}}/health
### Ready Check
GET {{baseUrl}}/ready
### Alive Check
GET {{baseUrl}}/alive