mirror of
https://github.com/koel/koel
synced 2024-11-10 06:34:14 +00:00
Rearrange .env entries for better priority
This commit is contained in:
parent
e02fcb37ed
commit
7c378ac78f
1 changed files with 18 additions and 17 deletions
35
.env.example
35
.env.example
|
@ -1,13 +1,3 @@
|
|||
APP_ENV=production
|
||||
APP_DEBUG=true
|
||||
APP_URL=http://localhost
|
||||
|
||||
# If you want to use Amazon S3 with Koel, fill the info here and follow the
|
||||
# installation guide at https://github.com/phanan/koel-aws.
|
||||
AWS_ACCESS_KEY_ID=
|
||||
AWS_SECRET_ACCESS_KEY=
|
||||
AWS_REGION=
|
||||
|
||||
# Database connection name, which corresponds to the database driver.
|
||||
# Possible values are:
|
||||
# mysql (MySQL/MariaDB - default)
|
||||
|
@ -19,13 +9,6 @@ DB_DATABASE=
|
|||
DB_USERNAME=
|
||||
DB_PASSWORD=
|
||||
|
||||
# A random 32-char string
|
||||
APP_KEY=
|
||||
|
||||
# Another random 32-char string
|
||||
JWT_SECRET=
|
||||
|
||||
|
||||
# Username and password for the initial admin account
|
||||
# This info will be populated into the database during `php artisan db:seed`
|
||||
# After that, it can (and should) be removed from this .env file
|
||||
|
@ -33,6 +16,17 @@ ADMIN_EMAIL=
|
|||
ADMIN_NAME=
|
||||
ADMIN_PASSWORD=
|
||||
|
||||
# A random 32-char string. You can leave this empty if use php artisan koel:init.
|
||||
APP_KEY=
|
||||
|
||||
# Another random 32-char string. You can leave this empty if use php artisan koel:init.
|
||||
JWT_SECRET=
|
||||
|
||||
|
||||
APP_ENV=production
|
||||
APP_DEBUG=true
|
||||
APP_URL=http://localhost
|
||||
|
||||
|
||||
# The maximum scan time, in seconds. Increase this if you have a huge library.
|
||||
# Note: This setting doesn't have effect when scanning via koel:sync.
|
||||
|
@ -51,6 +45,13 @@ LASTFM_API_KEY=
|
|||
LASTFM_API_SECRET=
|
||||
|
||||
|
||||
# If you want to use Amazon S3 with Koel, fill the info here and follow the
|
||||
# installation guide at https://github.com/phanan/koel-aws.
|
||||
AWS_ACCESS_KEY_ID=
|
||||
AWS_SECRET_ACCESS_KEY=
|
||||
AWS_REGION=
|
||||
|
||||
|
||||
# If you want Koel to integrate with YouTube, set the API key here.
|
||||
YOUTUBE_API_KEY=
|
||||
|
||||
|
|
Loading…
Reference in a new issue