appsettings.json
713 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 | "SeedIdentity": true, |
| 9 | "SeedData": true |
| 10 | }, |
| 11 | "SupportedCultures": ["en", "et"], |
| 12 | "DefaultCulture": "en", |
| 13 | "LangStrDefaultCulture": "en", |
| 14 | "JWT": { |
| 15 | "Key": "dev-only-jwt-signing-key-override-in-production-via-JWT_KEY-env-var", |
| 16 | "Issuer": "itcollege.taltech.ee", |
| 17 | "Audience": "itcollege.taltech.ee", |
| 18 | "ExpiresInSeconds": 1800 |
| 19 | }, |
| 20 | "Logging": { |
| 21 | "LogLevel": { |
| 22 | "Default": "Information", |
| 23 | "Microsoft.AspNetCore": "Warning" |
| 24 | } |
| 25 | }, |
| 26 | "AllowedHosts": "*" |
| 27 | } |
| 28 | |