appsettings.json
924 bytes
| 1 | { |
|---|---|
| 2 | "ConnectionStrings": { |
| 3 | "DefaultConnection": "Host=localhost;Port=5432;Database=splitapp;Username=postgres;Password=postgres" |
| 4 | }, |
| 5 | "DataInitialization": { |
| 6 | "DropDatabase": false, |
| 7 | "MigrateDatabase": true, |
| 8 | "SeedData": true |
| 9 | }, |
| 10 | "SupportedCultures": ["en", "et"], |
| 11 | "DefaultCulture": "en", |
| 12 | "LangStrDefaultCulture": "en", |
| 13 | "JWT": { |
| 14 | "Key": "dev-only-signing-key-override-in-production-0123456789", |
| 15 | "Issuer": "splitapp", |
| 16 | "Audience": "splitapp", |
| 17 | "ExpiresInSeconds": 1800 |
| 18 | }, |
| 19 | "UsersService": { |
| 20 | "BaseUrl": "http://localhost:98" |
| 21 | }, |
| 22 | "Messaging": { |
| 23 | "RabbitMq": { |
| 24 | "HostName": "localhost", |
| 25 | "Port": 5672, |
| 26 | "UserName": "guest", |
| 27 | "Password": "guest", |
| 28 | "VirtualHost": "/", |
| 29 | "RpcReplyTimeoutSeconds": 10 |
| 30 | } |
| 31 | }, |
| 32 | "Logging": { |
| 33 | "LogLevel": { |
| 34 | "Default": "Information", |
| 35 | "Microsoft.AspNetCore": "Warning" |
| 36 | } |
| 37 | }, |
| 38 | "AllowedHosts": "*" |
| 39 | } |
| 40 | |