pixelfed/.env.testing

72 lines
1.5 KiB
Plaintext
Raw Permalink Normal View History

2024-01-16 20:51:37 +00:00
# shellcheck disable=SC2034,SC2148
APP_NAME="Pixelfed Test"
APP_ENV=local
2018-11-29 05:46:48 +00:00
APP_KEY=base64:lwX95GbNWX3XsucdMe0XwtOKECta3h/B+p9NbH2jd0E=
APP_DEBUG=true
2018-11-29 05:46:48 +00:00
2019-05-06 06:21:41 +00:00
APP_URL=https://pixelfed.dev
2018-11-29 05:46:48 +00:00
APP_DOMAIN="pixelfed.dev"
2019-05-06 06:21:41 +00:00
ADMIN_DOMAIN="pixelfed.dev"
SESSION_DOMAIN="pixelfed.dev"
TRUST_PROXIES="*"
2018-11-29 05:46:48 +00:00
LOG_CHANNEL=stack
2019-09-02 00:50:53 +00:00
DB_CONNECTION=sqlite
2018-11-29 05:46:48 +00:00
DB_HOST=127.0.0.1
DB_PORT=3306
2019-09-02 00:50:53 +00:00
DB_DATABASE='tests/database.sqlite'
2018-11-29 05:46:48 +00:00
DB_USERNAME=
DB_PASSWORD=
BROADCAST_DRIVER=log
2019-09-02 00:50:53 +00:00
CACHE_DRIVER=array
SESSION_DRIVER=array
2018-11-29 05:46:48 +00:00
QUEUE_DRIVER=redis
2019-08-13 07:34:58 +00:00
REDIS_SCHEME=tcp
2018-11-29 05:46:48 +00:00
REDIS_HOST=127.0.0.1
REDIS_PASSWORD=null
REDIS_PORT=6379
2022-05-15 04:47:10 +00:00
HORIZON_PREFIX="horizon-"
2018-11-29 05:46:48 +00:00
MAIL_DRIVER=log
MAIL_HOST=smtp.mailtrap.io
MAIL_PORT=2525
MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_ENCRYPTION=null
MAIL_FROM_ADDRESS="pixelfed@example.com"
MAIL_FROM_NAME="Pixelfed"
2019-05-06 06:21:41 +00:00
OPEN_REGISTRATION=true
ENFORCE_EMAIL_VERIFICATION=false
PF_MAX_USERS=1000
2018-11-29 05:46:48 +00:00
MAX_PHOTO_SIZE=15000
MAX_CAPTION_LENGTH=150
MAX_ALBUM_LENGTH=4
2019-05-06 06:21:41 +00:00
ACTIVITY_PUB=false
REMOTE_FOLLOW=false
ACTIVITYPUB_INBOX=false
ACTIVITYPUB_SHAREDINBOX=false
# Set these "true" to enable federation.
# You might need to also run:
# php artisan cache:clear
# php artisan optimize:clear
# php artisan optimize
2018-12-29 23:56:39 +00:00
2019-05-06 19:52:41 +00:00
PF_COSTAR_ENABLED=true
2019-04-05 02:04:51 +00:00
CS_BLOCKED_DOMAINS='example.org,example.net,example.com'
CS_CW_DOMAINS='example.org,example.net,example.com'
CS_UNLISTED_DOMAINS='example.org,example.net,example.com'
2019-05-06 06:21:41 +00:00
2024-01-16 20:51:37 +00:00
## Optional
2019-05-06 06:21:41 +00:00
#HORIZON_DARKMODE=false # Horizon theme darkmode
2024-01-16 20:51:37 +00:00
#HORIZON_EMBED=false # Single Docker Container mode
2023-05-07 11:12:47 +00:00
ENABLE_CONFIG_CACHE=false