ctrlpanel/.env.example

70 lines
1.7 KiB
Plaintext
Raw Normal View History

### --- App Settings --- ###
APP_NAME=CtrlPanel.gg
APP_ENV=production
2021-06-05 09:26:32 +00:00
APP_KEY=
APP_DEBUG=false
2021-06-05 09:26:32 +00:00
APP_URL=http://localhost
APP_TIMEZONE=UTC # List with timezones https://www.php.net/manual/en/timezones.php
### --- App Settings End --- ###
### --- Database Settings (required) --- ###
2021-06-05 09:26:32 +00:00
DB_CONNECTION=mysql
2021-07-19 21:44:56 +00:00
DB_HOST=127.0.0.1
2021-06-05 09:26:32 +00:00
DB_PORT=3306
2021-07-19 21:44:56 +00:00
DB_DATABASE=dashboard
DB_USERNAME=dashboarduser
DB_PASSWORD=
### --- Database Settings End --- ###
2021-06-05 09:26:32 +00:00
### --- Google Recaptcha Settings --- ###
RECAPTCHA_SITE_KEY=6LeIxAcTAAAAAJcZVRqyHh71UMIEGNQ_MXjiZKhI
RECAPTCHA_SECRET_KEY=6LeIxAcTAAAAAGG-vFI1TnRWxMZNFuojJ4WifJWe
### --- Google Recaptcha Settings End --- ###
2021-06-05 09:26:32 +00:00
### --- Mail Server Settings --- ###
MAIL_MAILER=smtp
MAIL_HOST=mailhog
MAIL_PORT=1025
MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_ENCRYPTION=null
MAIL_FROM_ADDRESS=null
MAIL_FROM_NAME="${APP_NAME}"
### --- Mail Server Settings End --- ###
2021-06-05 09:26:32 +00:00
### --- Logging Settings --- ###
2021-06-09 18:11:04 +00:00
LOG_CHANNEL=stack
LOG_LEVEL=debug
### --- Logging Settings End --- ###
2021-06-09 18:11:04 +00:00
### --- Cache and Queue Settings --- ###
2021-06-05 09:26:32 +00:00
CACHE_DRIVER=file
QUEUE_CONNECTION=database
SESSION_DRIVER=file
SESSION_LIFETIME=120
SETTINGS_CACHE_ENABLED=true
### --- Cache and Queue Settings End --- ###
2021-06-05 09:26:32 +00:00
### --- External Services Credentials --- ###
2021-06-05 09:26:32 +00:00
AWS_ACCESS_KEY_ID=
AWS_SECRET_ACCESS_KEY=
AWS_DEFAULT_REGION=us-east-1
AWS_BUCKET=
PUSHER_APP_ID=
PUSHER_APP_KEY=
PUSHER_APP_SECRET=
PUSHER_APP_CLUSTER=mt1
### --- External Services Credentials End --- ###
### --- Additional Configuration --- ###
MEMCACHED_HOST=127.0.0.1
REDIS_HOST=127.0.0.1
REDIS_PASSWORD=null
REDIS_PORT=6379
2021-06-05 09:26:32 +00:00
MIX_PUSHER_APP_KEY="${PUSHER_APP_KEY}"
MIX_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}"
### --- Additional Configuration End --- ###