appsettings.Development.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "Logging": {
  3. "LogLevel": {
  4. "Default": "Information",
  5. "Microsoft": "Warning",
  6. // Enable components logging
  7. "Microsoft.Hosting.Lifetime": "Information",
  8. // Enable EF logging
  9. "Microsoft.EntityFrameworkCore.Database.Command": "Information"
  10. }
  11. },
  12. "Bo": {
  13. "System": {
  14. "SessionIdleTimeout": "00:05:00",
  15. "AccountSystem": {
  16. "Name": "System",
  17. "Password": "Fr1cEKd0NTD13",
  18. "Email": "system@bo.com",
  19. "Culture": "en-US"
  20. },
  21. "AccountConsole": {
  22. "Name": "Console",
  23. "Password": "A1Abastr0vA",
  24. "Email": "console@bo.com",
  25. "Culture": "en-US"
  26. },
  27. "AccountAdmin": {
  28. "Name": "Administrator",
  29. "Password": "Pan1d0mAc1",
  30. "Email": "admin@bo.com",
  31. "Culture": "en-US"
  32. }
  33. },
  34. "Business": {
  35. "DefaultBillingPlanCode" : "UNLIMITED"
  36. },
  37. "Api": {
  38. "Console": {
  39. "MagicKeys": [
  40. "6DEC4167-57A6-4333-92DA-ADE009A97DE9",
  41. "SHARE"
  42. ]
  43. }
  44. }
  45. }
  46. }