Updated to Laravel 9, small fixes, and more
This commit is contained in:
parent
6fc52ee512
commit
9fd844ae1a
24 changed files with 5589 additions and 2557 deletions
37
.env.example
37
.env.example
|
@ -1,24 +1,31 @@
|
|||
APP_NAME=ThemePark
|
||||
APP_NAME=ThemeParkPanel
|
||||
APP_ENV=local
|
||||
APP_KEY=base64:NgU4ntPnC5jzbmnTbXM5cahMRa5GCrfUyb3P+3tq9BM=
|
||||
APP_DEBUG=true
|
||||
APP_URL=http://localhost
|
||||
APP_KEY=
|
||||
APP_DEBUG=false
|
||||
APP_URL=https://yourpanellink.com
|
||||
|
||||
HOME_PAGE=false
|
||||
SHOWS=true
|
||||
STORE_URL=''
|
||||
OPENAUDIOMC_URL=''
|
||||
LOG_CHANNEL=stack
|
||||
|
||||
DB_CONNECTION=mysql
|
||||
DB_HOST=127.0.0.1
|
||||
DB_PORT=3306
|
||||
DB_DATABASE=themepark
|
||||
DB_DATABASE=themeparkpanel
|
||||
DB_USERNAME=root
|
||||
DB_PASSWORD=
|
||||
DB_PASSWORD=yourpassword
|
||||
|
||||
BROADCAST_DRIVER=log
|
||||
CACHE_DRIVER=file
|
||||
QUEUE_CONNECTION=sync
|
||||
SESSION_DRIVER=file
|
||||
SESSION_LIFETIME=120
|
||||
|
||||
MAIL_DRIVER=smtp
|
||||
MAIL_HOST=smtp.mailtrap.io
|
||||
MAIL_PORT=2525
|
||||
MAIL_USERNAME=null
|
||||
MAIL_PASSWORD=null
|
||||
MAIL_ENCRYPTION=null
|
||||
MAIL_HOST=web.yourhosting.com
|
||||
MAIL_PORT=587
|
||||
MAIL_USERNAME=yourmail@yourpanellink.com
|
||||
MAIL_PASSWORD=yourpassword
|
||||
MAIL_ENCRYPTION=tls
|
||||
|
||||
STORE_URL=https://store.yourpanellink.com
|
||||
SHOWS=true
|
||||
HOME_PAGE=true
|
Reference in a new issue