appsettings.Development.json 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. "Logging": {
  3. "LogLevel": {
  4. "Default": "Information",
  5. "Microsoft.AspNetCore": "Warning"
  6. }
  7. },
  8. "ConnectionStrings": {
  9. "MTWorkHRConnectionString": "Server=tcp:mtworksqlserver.database.windows.net,1433;Initial Catalog=MTWorkHRDB;Persist Security Info=False;User ID=MTWorkHR;Password=MTWork@12345;MultipleActiveResultSets=False;Encrypt=True;TrustServerCertificate=False;Connection Timeout=30;",
  10. "LocalConnectionString": "Server=.;Database=MTWorkHRDB;User=sa;Password=p@ssw0rd;MultipleActiveResultSets=true;Integrated Security=True;Encrypt=False",
  11. "BlobConnectionString": "DefaultEndpointsProtocol=https;AccountName=mtworkhrstorage;AccountKey=8EfjO3+4jHmf6QSnW5PCFDWry8oXSAM4pGtlIviImd5yCo6lxWDUpnzfT6ppHJqhKztuGU9IL4Ai+ASt16oHZA==;EndpointSuffix=core.windows.net"
  12. // "HRIdentityDB": "Server=localhost;Database=HRIdentityDB;User=sa;Password=p@ssw0rd;MultipleActiveResultSets=true"
  13. //Data Source=.;Initial Catalog=CBQ_VIVR;Integrated Security=True;Encrypt=False
  14. },
  15. "JwtSettings": {
  16. "SecretKey": "dkajsdfhalksjdhfalksdjhfalksdjfhaslkdjfhasdlkfhjasdlkfhasdlkfhjasdfhh",
  17. "Audience": "http://localhost:28222",
  18. "Issuer": "https://localhost:44325",
  19. "DurationInMinutes": 60000
  20. },
  21. "CookieOptions": {
  22. "SessionCookieExpiryInSeconds": 3600,
  23. "SurveyCookieExpiryInSeconds": 1800
  24. },
  25. "DbConfig": {
  26. "RunMigrations": true
  27. },
  28. "AttachmentSettings": {
  29. "TempAttachment": "C:\\Attachment\\Temp",
  30. "ActualAttachment": "C:\\Attachment\\Actual"
  31. },
  32. "MailSettings": {
  33. "ApiKey": "SendGrid-Key",
  34. "FromAddress": "noreply@mtwork.com",
  35. "FromName": "MTWork Hr Management System",
  36. "Password": "Noreply@1111",
  37. "Host": "smtp.gmail.com",
  38. "SmtpUsername": "SMTP_username", // "MTCommunicationServiceResource.57fe2efd-9859-488f-8313-0acd27450cf0.2ff48a6f-9604-49d0-b338-28e96f91ec99", //"EmailSMTPApp",
  39. "Port": 587,
  40. "TemplatePath": "C:\\Attachment\\MailTemp\\EmailTemplate.html"
  41. },
  42. "OTPSettings": {
  43. "Length": 4,
  44. "ExpirePeriodInMinutes": 3000,
  45. "SendEmail": true,
  46. "AllowZeros": true,
  47. "MessageBody": "Dear User, Your OTP is {0}. Use this passcode to proceed.",
  48. "MessageSubject": "OTP"
  49. },
  50. "MatchMoveSettings": {
  51. "BaseUrl": "https://customer-orchestrator.uat.matchmove-beta.com/{product}/v2",
  52. "ClientId": "your-client-id",
  53. "ClientSecret": "your-client-secret",
  54. "GrantType": "client_credentials"
  55. },
  56. "AllowedHosts": "*"
  57. }