|
|
@ -1,26 +1,43 @@ |
|
|
|
BASE_URL=http://compass.p3k.io/ |
|
|
|
DEFAULT_AUTH_ENDPOINT=https://indieauth.com/auth |
|
|
|
ATLAS_BASE=http://atlas.p3k.io/ |
|
|
|
# Where you've installed Compass |
|
|
|
BASE_URL=https://compass.example.com/ |
|
|
|
|
|
|
|
# Atlas is used for geocoding trips |
|
|
|
# Source code: https://github.com/aaronpk/Atlas |
|
|
|
ATLAS_BASE=https://atlas.p3k.io/ |
|
|
|
|
|
|
|
# Make sure the web server or PHP process can write here |
|
|
|
STORAGE_DIR=/var/compass/data |
|
|
|
|
|
|
|
APP_ENV=local |
|
|
|
APP_DEBUG=true |
|
|
|
APP_KEY=SomeRandomKey!!! |
|
|
|
|
|
|
|
APP_LOCALE=en |
|
|
|
APP_FALLBACK_LOCALE=en |
|
|
|
# Set APP_KEY to a 32 character string |
|
|
|
APP_KEY=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx |
|
|
|
|
|
|
|
# Define your database connection |
|
|
|
DB_CONNECTION=mysql |
|
|
|
DB_HOST=localhost |
|
|
|
DB_PORT=3306 |
|
|
|
DB_DATABASE=homestead |
|
|
|
DB_USERNAME=homestead |
|
|
|
DB_DATABASE=compass |
|
|
|
DB_USERNAME=compass |
|
|
|
DB_PASSWORD=secret |
|
|
|
|
|
|
|
CACHE_DRIVER=memcached |
|
|
|
SESSION_DRIVER=memcached |
|
|
|
# Cookie driver is probably fine. Alternate options: |
|
|
|
# https://lumen.laravel.com/docs/5.1/session |
|
|
|
SESSION_DRIVER=cookie |
|
|
|
SESSION_LIFETIME=500000 |
|
|
|
|
|
|
|
# Processing trips is done on a job queue. If using the database queue, |
|
|
|
# you'll need to create the jobs table. See details in the readme. |
|
|
|
QUEUE_DRIVER=database |
|
|
|
# QUEUE_DRIVER=redis |
|
|
|
|
|
|
|
DEFAULT_AUTH_ENDPOINT=https://indieauth.com/auth |
|
|
|
|
|
|
|
APP_ENV=local |
|
|
|
APP_DEBUG=true |
|
|
|
|
|
|
|
APP_LOCALE=en |
|
|
|
APP_FALLBACK_LOCALE=en |
|
|
|
|
|
|
|
#CACHE_DRIVER=memcached |
|
|
|
|
|
|
|
# MAIL_DRIVER=smtp |
|
|
|
# MAIL_HOST=mailtrap.io |
|
|
|