appsettings.json 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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": "(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": true,
  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. "AccountProcess": {
  37. "Name": "Process",
  38. "Password": "SmRAd1avKA",
  39. "Email": "process@bo.com",
  40. "Culture": "en-US"
  41. },
  42. "Storage": {
  43. "InputPath": "C:\\BOFiles\\Input",
  44. "OutputPath": "C:\\BOFiles\\Output",
  45. "IoBufferSize": 4096
  46. }
  47. },
  48. "Business": {
  49. "DefaultBillingPlanCode" : "UNLIMITED"
  50. },
  51. "Api": {
  52. "Console": {
  53. "MagicKeys": [
  54. "6DEC4167-57A6-4333-92DA-ADE009A97DE9",
  55. "SHARE"
  56. ]
  57. },
  58. "Process": {
  59. "MagicKeys": [
  60. "SHARE"
  61. ]
  62. }
  63. }
  64. }
  65. }