mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
38 lines
1,018 B
Plaintext
38 lines
1,018 B
Plaintext
# --------------------------------------------
|
|
# REQUIRED: BASIC APP SETTINGS
|
|
# --------------------------------------------
|
|
APP_ENV='testing-ci'
|
|
APP_DEBUG=false
|
|
APP_KEY='base64:glJpcM7BYwWiBggp3SQ/+NlRkqsBQMaGEOjemXqJzOU='
|
|
APP_URL='http://localhost:8000'
|
|
APP_TIMEZONE='US/Pacific'
|
|
APP_LOCALE=en
|
|
FILESYSTEM_DISK=local
|
|
|
|
# --------------------------------------------
|
|
# REQUIRED: DATABASE SETTINGS
|
|
# --------------------------------------------
|
|
DB_CONNECTION=sqlite
|
|
DB_HOST=localhost
|
|
DB_PORT=3309
|
|
DB_DATABASE='sqlite_testing'
|
|
DB_USERNAME=root
|
|
DB_PASSWORD=null
|
|
|
|
# --------------------------------------------
|
|
# REQUIRED: OUTGOING MAIL SERVER SETTINGS
|
|
# --------------------------------------------
|
|
MAIL_DRIVER=log
|
|
|
|
|
|
# --------------------------------------------
|
|
# REQUIRED: IMAGE LIBRARY
|
|
# This should be gd or imagick
|
|
# --------------------------------------------
|
|
IMAGE_LIB=gd
|
|
|
|
|
|
# --------------------------------------------
|
|
# OPTIONAL: APP LOG FORMAT
|
|
# --------------------------------------------
|
|
LOG_CHANNEL=single |