You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
950 B

  1. # Where you've installed Compass
  2. BASE_URL=https://compass.example.com/
  3. # Atlas is used for geocoding trips
  4. # Source code: https://github.com/aaronpk/Atlas
  5. ATLAS_BASE=https://atlas.p3k.io/
  6. # Make sure the web server or PHP process can write here
  7. STORAGE_DIR=/var/compass/data
  8. # Set APP_KEY to a 32 character string
  9. APP_KEY=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
  10. # Define your database connection
  11. DB_CONNECTION=mysql
  12. DB_HOST=localhost
  13. DB_PORT=3306
  14. DB_DATABASE=compass
  15. DB_USERNAME=compass
  16. DB_PASSWORD=secret
  17. # Cookie driver is probably fine. Alternate options:
  18. # https://lumen.laravel.com/docs/5.1/session
  19. SESSION_DRIVER=cookie
  20. SESSION_LIFETIME=500000
  21. # Processing trips is done on a job queue. If using the database queue,
  22. # you'll need to create the jobs table. See details in the readme.
  23. QUEUE_DRIVER=database
  24. # QUEUE_DRIVER=redis
  25. DEFAULT_AUTH_ENDPOINT=https://indieauth.com/auth
  26. APP_ENV=local
  27. APP_DEBUG=true
  28. APP_LOCALE=en
  29. APP_FALLBACK_LOCALE=en