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 | |