Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

appsettings.Development.json 1.5KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "Serilog": {
  3. "Using": [ "Serilog.Sinks.Console", "Serilog.Sinks.File", "Serilog.Sinks.Seq" ],
  4. "MinimumLevel": {
  5. "Default": "Debug",
  6. "Override": {
  7. "Microsoft": "Information",
  8. "Microsoft.AspNetCore": "Warning"
  9. }
  10. },
  11. "WriteTo": [
  12. {
  13. "Name": "Console"
  14. },
  15. {
  16. "Name": "File",
  17. "Args": { "path": "Logs/log.txt" }
  18. },
  19. {
  20. "Name": "Seq",
  21. "Args": { "ServerUrl": "http://localhost:5341" }
  22. }
  23. ],
  24. "Enrich": [ "FromLogContext", "WithMachineName", "WtihThreadId", "WithExceptionDetails" ]
  25. },
  26. "ConnectionStrings": {
  27. "WebApi": "Server=192.168.88.105;Database=DiligDocumentOrganizer;User Id=dzenis_hadzifejzovic;Password=dzenis123!;"
  28. },
  29. "Authorization": {
  30. "JwtExpiredTime": "5",
  31. "JwtRefreshExpiredTime": "30",
  32. "Secret": "SECRET_ASKGFH#$_#((Y)#I%EWJGDSJTGKEOS@$SAF",
  33. "GoogleClientId": "734219382849-nvnulsu7ibfl4bk3n164bgb7c1h5dgca.apps.googleusercontent.com"
  34. },
  35. "Mail": {
  36. "SmtpServer": "smtp.mailtrap.io",
  37. "SmtpPort": 2525,
  38. "SmtpUseSSL": true,
  39. "SmtpUsername": "179be7a6fd2f50",
  40. "SmtpPassword": "63cde15de0d5d7",
  41. "SmtpFrom": "noreply@hrcenter.net",
  42. "SmtpFromName": "HRCenter Team"
  43. },
  44. "FrontEnd": {
  45. "BaseUrl": "http://localhost:3000",
  46. },
  47. "ScreeningTest": {
  48. "Url": "https://localhost:44349/api/v1/",
  49. "Email": "hrcenter@dilig.net",
  50. "Password": "MYRandomPass135!",
  51. "link": "https://localhost:44336/Intern/ToS?id={0}"
  52. }
  53. }