Advertisement
Guest User

env

a guest
Apr 14th, 2018
427
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.91 KB | None | 0 0
  1. # You can leave this on "local". If you change it to production most console commands will ask for extra confirmation.
  2. 2 # Never set it to "testing".
  3. 3 APP_ENV=local
  4. 4
  5. 5 # Set to true if you want to see debug information in error screens.
  6. 6 APP_DEBUG=false
  7. 7
  8. 8 # This should be your email address
  9. 9 SITE_OWNER=me@example.com
  10. 10
  11. 11 # The encryption key for your database and sessions. Keep this very secure.
  12. 12 # If you generate a new one all existing data must be considered LOST.
  13. 13 # Change it to a string of exactly 32 chars or use command `php artisan key:generate` to generate it
  14. 14 APP_KEY=base64:LX6p3fibx8H0IequME0JQqf7X3zWxlVdu95ocySu/24=
  15. 15
  16. 16 # Change this value to your preferred time zone.
  17. 17 # Example: Europe/Amsterdam
  18. 18 TZ=UTC
  19. 19
  20. 20 # APP_URL and TRUSTED_PROXIES are useful when using Docker and/or a reverse proxy.
  21. 21 #APP_URL=http://localhost
  22. 22 APP_URL=http://money.jasondaigo.de
  23. 23 TRUSTED_PROXIES=
  24. 24
  25. 25 # The log channel defines where your log entries go to.
  26. 26 LOG_CHANNEL=daily
  27. 27
  28. 28 # Database credentials. Make sure the database exists. I recommend a dedicated user for Firefly III
  29. 29 # For other database types, please see the FAQ: http://firefly-iii.readthedocs.io/en/latest/support/faq.html
  30. 30 DB_CONNECTION=mysql
  31. 31 DB_HOST=127.0.0.1
  32. 32 DB_PORT=3306
  33. 33 DB_DATABASE=homestead
  34. 34 DB_USERNAME=homestead
  35. 35 DB_PASSWORD=*********
  36. 36
  37. 37 # 'daily' is the default logging mode giving you 5 daily rotated log files in /storage/logs/.
  38. 38 # Several other options exist. You can use 'single' for one big fat error log (not recommended).
  39. 39 # Also available are 'syslog' and 'errorlog' which will log to the system itself.
  40. 40 APP_LOG=daily
  41. 41
  42. 42 # Log level. You can set this from least severe to most severe:
  43. 43 # debug, info, notice, warning, error, critical, alert, emergency
  44. 44 # If you set it to debug your logs will grow large, and fast. If you set it to emergency probably
  45. 45 # nothing will get logged, ever.
  46. 46 APP_LOG_LEVEL=debug
  47. 47
  48. 48 # If you're looking for performance improvements, you could install memcached.
  49. 49 CACHE_DRIVER=file
  50. 50 SESSION_DRIVER=file
  51. 51
  52. 52 # Cookie settings. Should not be necessary to change these.
  53. 53 COOKIE_PATH="/"
  54. 54 COOKIE_DOMAIN=
  55. 55 COOKIE_SECURE=false
  56. 56
  57. 57 # If you want Firefly III to mail you, update these settings
  58. 58 MAIL_DRIVER=smtp
  59. 59 MAIL_HOST=smtp.mailtrap.io
  60. 60 MAIL_PORT=2525
  61. MAIL_PORT=2525
  62. 61 MAIL_FROM=changeme@example.com
  63. 62 MAIL_USERNAME=null
  64. 63 MAIL_PASSWORD=null
  65. 64 MAIL_ENCRYPTION=null
  66. 65
  67. 66 # Firefly III can send you the following messages
  68. 67 SEND_REGISTRATION_MAIL=true
  69. 68 SEND_ERROR_MESSAGE=true
  70. 69
  71. 70 # Set a Mapbox API key here (see mapbox.com) so there might be a map available at various places.
  72. 71 MAPBOX_API_KEY=
  73. 72
  74. 73 # Set a Fixer IO API key here (see https://fixer.io) to enable live currency exchange rates.
  75. 74 # Please note that this will only work for paid fixer.io accounts because they severly limited
  76. 75 # the free API up to the point where you might as well offer nothing.
  77. 76 FIXER_API_KEY=
  78. 77
  79. 78 # If you wish to track your own behavior over Firefly III, set a valid analytics tracker ID here.
  80. 79 ANALYTICS_ID=
  81. 80
  82. 81 # Most parts of the database are encrypted by default, but you can turn this off if you want to.
  83. 82 # This makes it easier to migrate your database. Not that some fields will never be decrypted.
  84. 83 USE_ENCRYPTION=true
  85. 84
  86. 85 # Leave the following configuration vars as is.
  87. 86 # Unless you like to tinker and know what you're doing.
  88. 87 APP_NAME=FireflyIII
  89. 88 BROADCAST_DRIVER=log
  90. 89 QUEUE_DRIVER=sync
  91. 90 REDIS_HOST=127.0.0.1
  92. 91 REDIS_PASSWORD=null
  93. 92 REDIS_PORT=6379
  94. 93 CACHE_PREFIX=firefly
  95. 94 SEARCH_RESULT_LIMIT=50
  96. 95 PUSHER_KEY=
  97. 96 PUSHER_SECRET=
  98. 97 PUSHER_ID=
  99. 98 DEMO_USERNAME=
  100. 99 DEMO_PASSWORD=
  101. 100 IS_DOCKER=false
  102. 101 IS_SANDSTORM=false
  103. 102 IS_HEROKU=false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement