mirror of
https://github.com/Gurkengewuerz/nitro-docker.git
synced 2024-11-26 09:40:51 +01:00
93 lines
2.1 KiB
Plaintext
93 lines
2.1 KiB
Plaintext
APP_NAME=Laravel
|
|
APP_ENV=production
|
|
APP_KEY=base64:VcFHbHg+rGs3CWrjPOvTpg+9am00e3GCAx4Iyrg9p+c=
|
|
APP_DEBUG=false
|
|
APP_URL=http://127.0.0.1:8081
|
|
|
|
LOG_CHANNEL=stack
|
|
LOG_DEPRECATIONS_CHANNEL=null
|
|
LOG_LEVEL=debug
|
|
|
|
# Change those to match your database settings
|
|
DB_CONNECTION=mysql
|
|
DB_HOST=db
|
|
DB_PORT=3306
|
|
DB_DATABASE=arcturus
|
|
DB_USERNAME=arcturus_user
|
|
DB_PASSWORD=arcturus_pw
|
|
|
|
BROADCAST_DRIVER=log
|
|
CACHE_DRIVER=file
|
|
FILESYSTEM_DISK=local
|
|
QUEUE_CONNECTION=sync
|
|
SESSION_DRIVER=database
|
|
SESSION_LIFETIME=120
|
|
|
|
MEMCACHED_HOST=127.0.0.1
|
|
|
|
REDIS_HOST=127.0.0.1
|
|
REDIS_PASSWORD=null
|
|
REDIS_PORT=6379
|
|
|
|
MAIL_MAILER=smtp
|
|
MAIL_HOST=mailhog
|
|
MAIL_PORT=1025
|
|
MAIL_USERNAME=null
|
|
MAIL_PASSWORD=null
|
|
MAIL_ENCRYPTION=null
|
|
MAIL_FROM_ADDRESS="hello@example.com"
|
|
MAIL_FROM_NAME="${APP_NAME}"
|
|
|
|
AWS_ACCESS_KEY_ID=
|
|
AWS_SECRET_ACCESS_KEY=
|
|
AWS_DEFAULT_REGION=us-east-1
|
|
AWS_BUCKET=
|
|
AWS_USE_PATH_STYLE_ENDPOINT=false
|
|
|
|
PUSHER_APP_ID=
|
|
PUSHER_APP_KEY=
|
|
PUSHER_APP_SECRET=
|
|
PUSHER_HOST=
|
|
PUSHER_PORT=443
|
|
PUSHER_SCHEME=https
|
|
PUSHER_APP_CLUSTER=mt1
|
|
|
|
VITE_PUSHER_APP_KEY="${PUSHER_APP_KEY}"
|
|
VITE_PUSHER_HOST="${PUSHER_HOST}"
|
|
VITE_PUSHER_PORT="${PUSHER_PORT}"
|
|
VITE_PUSHER_SCHEME="${PUSHER_SCHEME}"
|
|
VITE_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}"
|
|
|
|
NITRO_CLIENT_PATH=http://127.0.0.1:3000
|
|
|
|
# If set to true, Atom will rename any colliding table names when migration the first time around
|
|
RENAME_COLLIDING_TABLES=false
|
|
|
|
# Only enable if you come from a CMS like RevCMS
|
|
# This will only work if your password is hashed using md5
|
|
# By default Atom CMS uses bcrypt, this is purely used to ease the process, when switching from a CMS using md5
|
|
CONVERT_PASSWORDS=false
|
|
|
|
# Enable this if your site is running through https, but you're experiencing issues with requests being made to "http"
|
|
FORCE_HTTPS=false
|
|
|
|
# Default language for the site
|
|
APP_LOCALE=de
|
|
|
|
# General paypal options
|
|
PAYPAL_MODE='sandbox'
|
|
PAYPAL_PAYMENT_ACTION='Order'
|
|
PAYPAL_CURRENCY='USD'
|
|
PAYPAL_NOTIFY_URL=
|
|
PAYPAL_LOCALE='en_US'
|
|
PAYPAL_VALIDATE_SSL=true
|
|
|
|
#PayPal Setting & API Credentials - sandbox
|
|
PAYPAL_SANDBOX_CLIENT_ID=
|
|
PAYPAL_SANDBOX_CLIENT_SECRET=
|
|
PAYPAL_SANDBOX_APP_ID=
|
|
|
|
#PayPal Setting & API Credentials - live
|
|
PAYPAL_LIVE_CLIENT_ID=
|
|
PAYPAL_LIVE_CLIENT_SECRET=
|
|
PAYPAL_LIVE_APP_ID= |