appsettings.Development.json 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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. "DbConnectionBO": "Server=(localdb)\\MSSQLLocalDB;Database=BO;Trusted_Connection=True;", // For localDB use Server=(localdb)\mssqllocaldb, for SqlServer use Server=(local)
  15. "DbConnectionIF": "Server=(localdb)\\MSSQLLocalDB;Database=BO_IF;Trusted_Connection=True;", // For localDB use Server=(localdb)\mssqllocaldb, for SqlServer use Server=(local)
  16. "SessionIdleTimeout": "00:05:00",
  17. "UseSSL": false,
  18. "AccountSystem": {
  19. "Name": "System",
  20. "Password": "Fr1cEKd0NTD13",
  21. "Email": "system@bo.com",
  22. "Culture": "en-US"
  23. },
  24. "AccountConsole": {
  25. "Name": "Console",
  26. "Password": "A1Abastr0vA",
  27. "Email": "console@bo.com",
  28. "Culture": "en-US"
  29. },
  30. "AccountAdmin": {
  31. "Name": "Administrator",
  32. "Password": "Pan1d0mAc1",
  33. "Email": "admin@bo.com",
  34. "Culture": "en-US"
  35. },
  36. "Storage": {
  37. "InputPath": "C:\\BOFiles\\Input",
  38. "OutputPath": "C:\\BOFiles\\Output",
  39. "IoBufferSize": 4096
  40. }
  41. },
  42. "Business": {
  43. "DefaultBillingPlanCode" : "UNLIMITED"
  44. },
  45. "Api": {
  46. "Console": {
  47. "MagicKeys": [
  48. "6DEC4167-57A6-4333-92DA-ADE009A97DE9",
  49. "SHARE"
  50. ]
  51. }
  52. }
  53. }
  54. }