.env.example 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. #-----------------------Backend Config------------------------------#
  2. # Prisma Config
  3. DATABASE_URL=postgresql://postgres:testpass@hoppscotch-db:5432/hoppscotch
  4. # Auth Tokens Config
  5. JWT_SECRET="secret1233"
  6. TOKEN_SALT_COMPLEXITY=10
  7. MAGIC_LINK_TOKEN_VALIDITY= 3
  8. REFRESH_TOKEN_VALIDITY="604800000" # Default validity is 7 days (604800000 ms) in ms
  9. ACCESS_TOKEN_VALIDITY="86400000" # Default validity is 1 day (86400000 ms) in ms
  10. SESSION_SECRET='add some secret here'
  11. # Reccomended to be true, set to false if you are using http
  12. # Note: Some auth providers may not support http requests
  13. ALLOW_SECURE_COOKIES=true
  14. # Sensitive Data Encryption Key while storing in Database (32 character)
  15. DATA_ENCRYPTION_KEY="data encryption key with 32 char"
  16. # Hoppscotch App Domain Config
  17. REDIRECT_URL="http://localhost:3000"
  18. WHITELISTED_ORIGINS="http://localhost:3170,http://localhost:3000,http://localhost:3100"
  19. VITE_ALLOWED_AUTH_PROVIDERS=GOOGLE,GITHUB,MICROSOFT,EMAIL
  20. # Google Auth Config
  21. GOOGLE_CLIENT_ID="************************************************"
  22. GOOGLE_CLIENT_SECRET="************************************************"
  23. GOOGLE_CALLBACK_URL="http://localhost:3170/v1/auth/google/callback"
  24. GOOGLE_SCOPE="email,profile"
  25. # Github Auth Config
  26. GITHUB_CLIENT_ID="************************************************"
  27. GITHUB_CLIENT_SECRET="************************************************"
  28. GITHUB_CALLBACK_URL="http://localhost:3170/v1/auth/github/callback"
  29. GITHUB_SCOPE="user:email"
  30. # Microsoft Auth Config
  31. MICROSOFT_CLIENT_ID="************************************************"
  32. MICROSOFT_CLIENT_SECRET="************************************************"
  33. MICROSOFT_CALLBACK_URL="http://localhost:3170/v1/auth/microsoft/callback"
  34. MICROSOFT_SCOPE="user.read"
  35. MICROSOFT_TENANT="common"
  36. # Mailer config
  37. MAILER_SMTP_ENABLE="true"
  38. MAILER_USE_CUSTOM_CONFIGS="false"
  39. MAILER_ADDRESS_FROM='"From Name Here" <from@example.com>'
  40. MAILER_SMTP_URL="smtps://user@domain.com:pass@smtp.domain.com" # used if custom mailer configs is false
  41. # The following are used if custom mailer configs is true
  42. MAILER_SMTP_HOST="smtp.domain.com"
  43. MAILER_SMTP_PORT="587"
  44. MAILER_SMTP_SECURE="true"
  45. MAILER_SMTP_USER="user@domain.com"
  46. MAILER_SMTP_PASSWORD="pass"
  47. MAILER_TLS_REJECT_UNAUTHORIZED="true"
  48. # Rate Limit Config
  49. RATE_LIMIT_TTL=60 # In seconds
  50. RATE_LIMIT_MAX=100 # Max requests per IP
  51. #-----------------------Frontend Config------------------------------#
  52. # Base URLs
  53. VITE_BASE_URL=http://localhost:3000
  54. VITE_SHORTCODE_BASE_URL=http://localhost:3000
  55. VITE_ADMIN_URL=http://localhost:3100
  56. # Backend URLs
  57. VITE_BACKEND_GQL_URL=http://localhost:3170/graphql
  58. VITE_BACKEND_WS_URL=ws://localhost:3170/graphql
  59. VITE_BACKEND_API_URL=http://localhost:3170/v1
  60. # Terms Of Service And Privacy Policy Links (Optional)
  61. VITE_APP_TOS_LINK=https://docs.hoppscotch.io/support/terms
  62. VITE_APP_PRIVACY_POLICY_LINK=https://docs.hoppscotch.io/support/privacy
  63. # Set to `true` for subpath based access
  64. ENABLE_SUBPATH_BASED_ACCESS=false