.env.example 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. ### --- App Settings --- ###
  2. APP_NAME=CtrlPanel.gg
  3. APP_ENV=production
  4. APP_KEY=
  5. APP_DEBUG=false
  6. APP_URL=http://localhost
  7. APP_TIMEZONE=UTC # List with timezones https://www.php.net/manual/en/timezones.php
  8. ### --- App Settings End --- ###
  9. ### --- Database Settings (required) --- ###
  10. DB_CONNECTION=mysql
  11. DB_HOST=127.0.0.1
  12. DB_PORT=3306
  13. DB_DATABASE=dashboard
  14. DB_USERNAME=dashboarduser
  15. DB_PASSWORD=
  16. ### --- Database Settings End --- ###
  17. ### --- Google Recaptcha Settings --- ###
  18. RECAPTCHA_SITE_KEY=6LeIxAcTAAAAAJcZVRqyHh71UMIEGNQ_MXjiZKhI
  19. RECAPTCHA_SECRET_KEY=6LeIxAcTAAAAAGG-vFI1TnRWxMZNFuojJ4WifJWe
  20. ### --- Google Recaptcha Settings End --- ###
  21. ### --- Mail Server Settings --- ###
  22. MAIL_MAILER=smtp
  23. MAIL_HOST=mailhog
  24. MAIL_PORT=1025
  25. MAIL_USERNAME=null
  26. MAIL_PASSWORD=null
  27. MAIL_ENCRYPTION=null
  28. MAIL_FROM_ADDRESS=null
  29. MAIL_FROM_NAME="${APP_NAME}"
  30. ### --- Mail Server Settings End --- ###
  31. ### --- Logging Settings --- ###
  32. LOG_CHANNEL=stack
  33. LOG_LEVEL=debug
  34. ### --- Logging Settings End --- ###
  35. ### --- Cache and Queue Settings --- ###
  36. CACHE_DRIVER=file
  37. QUEUE_CONNECTION=database
  38. SESSION_DRIVER=file
  39. SESSION_LIFETIME=120
  40. SETTINGS_CACHE_ENABLED=true
  41. ### --- Cache and Queue Settings End --- ###
  42. ### --- External Services Credentials --- ###
  43. AWS_ACCESS_KEY_ID=
  44. AWS_SECRET_ACCESS_KEY=
  45. AWS_DEFAULT_REGION=us-east-1
  46. AWS_BUCKET=
  47. PUSHER_APP_ID=
  48. PUSHER_APP_KEY=
  49. PUSHER_APP_SECRET=
  50. PUSHER_APP_CLUSTER=mt1
  51. ### --- External Services Credentials End --- ###
  52. ### --- Additional Configuration --- ###
  53. MEMCACHED_HOST=127.0.0.1
  54. REDIS_HOST=127.0.0.1
  55. REDIS_PASSWORD=null
  56. REDIS_PORT=6379
  57. MIX_PUSHER_APP_KEY="${PUSHER_APP_KEY}"
  58. MIX_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}"
  59. ### --- Additional Configuration End --- ###