mirror of
https://github.com/HDInnovations/UNIT3D-Community-Edition.git
synced 2026-05-04 09:20:21 -05:00
16b780ad70
You can now choose to store your api keys in the .env file as this is a safer place for such sensitive data. If you pull this commit into your project you will need to update your api keys either in the api-keys.php or the .env file. In addition we fixed a bug in the redis database configurations. Any questions please visit us on discord!
43 lines
722 B
Bash
43 lines
722 B
Bash
APP_ENV=local
|
|
APP_KEY=
|
|
APP_DEBUG=false
|
|
APP_URL=http://unit3d.site
|
|
|
|
LOG_CHANNEL=daily
|
|
|
|
DB_CONNECTION=mysql
|
|
DB_HOST=127.0.0.1
|
|
DB_PORT=3306
|
|
DB_DATABASE=unit3d
|
|
DB_USERNAME=homestead
|
|
DB_PASSWORD=secret
|
|
|
|
BROADCAST_DRIVER=log
|
|
CACHE_DRIVER=redis
|
|
SESSION_DRIVER=redis
|
|
SESSION_LIFETIME=120
|
|
QUEUE_DRIVER=database
|
|
|
|
REDIS_HOST=127.0.0.1
|
|
REDIS_PASSWORD=null
|
|
REDIS_PORT=6379
|
|
REDIS_DEFAULT_DB=0
|
|
REDIS_SESSION_DB=1
|
|
|
|
MAIL_DRIVER=smtp
|
|
MAIL_HOST=mailtrap.io
|
|
MAIL_PORT=2525
|
|
MAIL_USERNAME=null
|
|
MAIL_PASSWORD=null
|
|
MAIL_ENCRYPTION=null
|
|
MAIL_FROM_NAME=hello@example.com
|
|
MAIL_FROM_ADDRESS=Example
|
|
|
|
DEFAULT_OWNER_NAME=UNIT3D
|
|
DEFAULT_OWNER_EMAIL=unit3d@none.com
|
|
DEFAULT_OWNER_PASSWORD=UNIT3D
|
|
|
|
FANART_API_KEY=
|
|
TMDB_API_KEY=
|
|
TVDB_API_KEY=
|
|
OMDB_API_KEY= |