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.

53 lines
1.8 KiB

  1. # Where you've installed Compass
  2. BASE_URL=https://compass.example.com/
  3. # Atlas is used for geocoding trips.
  4. # You can use mine or install your own.
  5. # Source code: https://github.com/aaronpk/Atlas
  6. ATLAS_BASE=https://atlas.p3k.io/
  7. # This is where the location data will be saved, MAKE SURE PATH ENDS WITH /
  8. # Compass will create a folder for each "database" you create after you log in.
  9. # Make sure the web server or PHP process can write here.
  10. STORAGE_DIR=/var/compass/data/
  11. # Set APP_KEY to a 32 character string. This is used to encrypt session data.
  12. # You can generate a string using the command `php artisan key:generate`
  13. APP_KEY=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
  14. # Define your database connection
  15. DB_CONNECTION=mysql
  16. DB_HOST=localhost
  17. DB_PORT=3306
  18. DB_DATABASE=compass
  19. DB_USERNAME=compass
  20. DB_PASSWORD=secret
  21. # Cookie driver is probably fine. Alternate options:
  22. # https://lumen.laravel.com/docs/5.1/session
  23. SESSION_DRIVER=cookie
  24. SESSION_LIFETIME=500000
  25. # Processing trips is done on a job queue. If using the database queue,
  26. # you'll need to create the jobs table. See details in the readme.
  27. QUEUE_DRIVER=database
  28. # QUEUE_DRIVER=redis
  29. CACHE_DRIVER=redis
  30. # This is how Compass signs users in. You can leave it set to the default, and
  31. # you'll be redirected there to authenticate as your domain name.
  32. # You can also run your own instance, or even point it to your own website
  33. # if it supports the IndieAuth protocol https://indieweb.org/indieauth-for-login
  34. DEFAULT_AUTH_ENDPOINT=https://indieauth.com/auth
  35. # If this is true, then anyone can create accounts. If false, then only existing
  36. # users in the users table will be able to log in. You can add your own domain name
  37. # to the users table to allow yourself to log in the first time.
  38. ALLOW_NEW_USERS=false
  39. APP_ENV=local
  40. APP_DEBUG=false
  41. APP_LOCALE=en
  42. APP_FALLBACK_LOCALE=en