-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappsettings.json
More file actions
54 lines (54 loc) · 1.27 KB
/
appsettings.json
File metadata and controls
54 lines (54 loc) · 1.27 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*",
"ConnectionStrings": {
"MySql": "Server=localhost;Port=3307;Database=serbleapi;User=root;Password=admin;"
},
"Api": {
"BindUrl": "http://*:5000",
"WebsiteUrl": "https://localhost:7244",
"LiveUrl": "http://localhost:5000/",
"Redirects": {
"discord": "https://discord.gg/fzvcNhW"
}
},
"Stripe": {
"ApiKey": "somestripeapikey",
"WebhookSecret": "somestripesecret",
"PremiumSubscriptionId": "somepriceid"
},
"Passkey": {
"RelyingPartyId": "localhost",
"RelyingPartyName": "Serble",
"AllowedOrigins": [
"https://serble.net",
"https://www.serble.net",
"https://serble",
"http://localhost:5173"
]
},
"Email": {
"SmtpHost": "smtp.example.com",
"SmtpPort": 587,
"SmtpUsername": "system@serble.net",
"SmtpPassword": "somepassword",
"Addresses": {
"System": "system@serble.net",
"Newsletter": "newsletter@serble.net",
"Contact": "admin@serble.net"
}
},
"Jwt": {
"Issuer": "CoPokBl",
"Audience": "Privileged Users",
"Secret": "somejwtsecretkey"
},
"Turnstile": {
"SecretKey": "somecaptchasecretkey"
}
}