1234567891011121314151617181920212223242526272829303132333435363738394041 |
- {
- "Logging": {
- "LogLevel": {
- "Default": "Information",
- "Microsoft.AspNetCore": "Warning"
- }
- },
- "ConnectionStrings": {
- "MTWorkHRConnectionString": "Server=localhost;Database=MTWorkHRDB;User=sa;Password=p@ssw0rd;MultipleActiveResultSets=true;Integrated Security=True;Encrypt=False"
- // "HRIdentityDB": "Server=localhost;Database=HRIdentityDB;User=sa;Password=p@ssw0rd;MultipleActiveResultSets=true"
- //Data Source=.;Initial Catalog=CBQ_VIVR;Integrated Security=True;Encrypt=False
- },
- "JwtSettings": {
- "SecretKey": "dkajsdfhalksjdhfalksdjhfalksdjfhaslkdjfhasdlkfhjasdlkfhasdlkfhjasdfhh",
- "Audience": "http://localhost:28222",
- "Issuer": "https://localhost:44325",
- "DurationInMinutes": 60
- },
- "CookieOptions": {
- "SessionCookieExpiryInSeconds": 3600,
- "SurveyCookieExpiryInSeconds": 1800
- },
- "DbConfig": {
- "RunMigrations": true
- },
- "AttachmentSettings": {
- "TempAttachment": "C:\\Attachment\\Temp",
- "ActualAttachment": "C:\\Attachment\\Actual"
- },
- "MailSettings": {
- "ApiKey": "SendGrid-Key",
- "FromAddress": "eng_z@live.com",
- "FromName": "Hr Management System",
- "Password": "j,jij,ji",
- "Host": "smtp-mail.outlook.com",
- "Port": 587,
- "TemplatePath": "C:\\Attachment\\MailTemp\\EmailTemplate.html"
- },
- "AllowedHosts": "*"
- }
|