shaark/.env.example

59 lines
1.2 KiB
Plaintext
Raw Permalink Normal View History

APP_NAME="Shaark"
2019-10-30 22:59:40 +00:00
# "production" or "local"
2019-08-22 19:12:37 +01:00
APP_ENV=local
2019-10-30 22:59:40 +00:00
# generated with: php artisan key:generate
2019-08-22 19:12:37 +01:00
APP_KEY=
2019-10-30 22:59:40 +00:00
# set debug to false in production
2019-08-22 19:12:37 +01:00
APP_DEBUG=true
2020-11-11 10:44:01 +00:00
APP_URL=http://127.0.0.1:8000
2019-08-22 19:12:37 +01:00
APP_TIMEZONE=Europe/Paris
2020-11-11 10:13:08 +00:00
# "en", "fr", "de", "nl" or "ja"
2019-10-30 22:59:40 +00:00
APP_LANG=en
2019-08-22 19:12:37 +01:00
2019-10-30 22:59:40 +00:00
# others drivers such as "sqlite" are not supported
2019-08-22 19:12:37 +01:00
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=homestead
DB_USERNAME=homestead
DB_PASSWORD=secret
2019-10-30 22:59:40 +00:00
# "file" or "redis" (if configured)
2019-08-22 19:12:37 +01:00
CACHE_DRIVER=file
2019-10-30 22:59:40 +00:00
# "sync" (local), "database" or "redis" (if configured)
2019-08-22 19:12:37 +01:00
QUEUE_CONNECTION=sync
2019-10-30 22:59:40 +00:00
# "file" or "redis" (if configured)
2019-08-22 19:12:37 +01:00
SESSION_DRIVER=file
SESSION_LIFETIME=120
2019-11-02 21:50:48 +00:00
# "gd" or "imagick" (user in albums)
IMAGE_DRIVER=gd
2019-08-22 19:12:37 +01:00
2019-10-30 22:59:40 +00:00
# optional
2019-08-22 19:12:37 +01:00
REDIS_HOST=127.0.0.1
REDIS_PASSWORD=null
REDIS_PORT=6379
2019-10-30 22:59:40 +00:00
# "sendmail" or "smtp"
MAIL_DRIVER=sendmail
2019-08-22 19:12:37 +01:00
MAIL_HOST=127.0.0.1
MAIL_PORT=1025
MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_ENCRYPTION=null
2019-09-25 21:44:44 +01:00
MAIL_FROM_ADDRESS=hello@example.com
MAIL_FROM_NAME="Shaark"
2019-08-22 19:12:37 +01:00
2019-10-30 22:59:40 +00:00
# replace 'default-salt' with a random string
2019-08-22 19:12:37 +01:00
HASHIDS_SALT=default-salt
HASHIDS_MIN_LENGTH=10
2019-10-30 22:59:40 +00:00
# "local" or "ftp"
BACKUP_DRIVER=local
# leave BACKUP_* empty if you're using the "local" driver
BACKUP_HOST=ftp.example.com
BACKUP_PORT=21
BACKUP_USERNAME=
BACKUP_PASSWORD=
BACKUP_TIMEOUT=60
BACKUP_SSL=false