profileShare

rasmusjy / splitapp-backend-microservices

Read-only snapshot

No repository description.

main default branch 501 files Expires Sep 13, 2026, 9:06 AM
appsettings.json 731 bytes
1 {
2 "Logging": {
3 "LogLevel": {
4 "Default": "Information",
5 "Microsoft.AspNetCore": "Warning",
6 "Microsoft.EntityFrameworkCore.Database.Command": "Warning"
7 }
8 },
9 "AllowedHosts": "*",
10 "ConnectionStrings": {
11 "DefaultConnection": "Host=localhost;Port=5432;Database=splitapp_users;Username=postgres;Password=postgres"
12 },
13 "JWT": {
14 "Key": "dev-only-signing-key-override-in-production-0123456789",
15 "Issuer": "splitapp",
16 "Audience": "splitapp",
17 "ExpiresInSeconds": 1800
18 },
19 "Messaging": {
20 "RabbitMq": {
21 "HostName": "localhost",
22 "Port": 5672,
23 "UserName": "guest",
24 "Password": "guest",
25 "VirtualHost": "/",
26 "RpcReplyTimeoutSeconds": 10
27 }
28 }
29 }
30