ctrlpanel/.env.example

106 lines
2.8 KiB
Plaintext
Raw Normal View History

APP_NAME=Controlpanel.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
2021-08-02 14:33:34 +00:00
#list with timezones https://www.php.net/manual/en/timezones.php
2021-07-28 16:29:06 +00:00
APP_TIMEZONE=UTC
# If set to true, Language is chosen automatically depending on the users browserlanguage.
DYNAMIC_LOCALE = false
# The language of the Dashboard. This is also the fallback if dynamic_locale is true but no translation is found
2021-12-13 07:59:27 +00:00
LOCALE=en
# You can grab the Language-Codes for the Datatables from this Website https://datatables.net/plug-ins/i18n/
2021-12-13 21:39:40 +00:00
DATATABLE_LOCALE=en-gb
2021-06-05 09:26:32 +00:00
#The languages you DO NOT want to support on your Controlpanel split by comma.
#Remove the language to make it available
UNSUPPORTED_LOCALES=german,italian,chinese
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=
2021-06-05 09:26:32 +00:00
#without a pterodactyl api token, this panel won't work!
PTERODACTYL_TOKEN=
2021-06-12 12:24:50 +00:00
#paypal details, you only need sandbox for testing! you can do this by setting the APP_ENV to local
2021-06-05 09:26:32 +00:00
PAYPAL_SANDBOX_SECRET=
PAYPAL_SANDBOX_CLIENT_ID=
PAYPAL_SECRET=
PAYPAL_CLIENT_ID=
#stripe details, you only need "test" for testing! you can do this by setting the APP_ENV to local
STRIPE_TEST_SECRET=
STRIPE_SECRET=
2021-12-17 10:38:40 +00:00
#https://dashboard.stripe.com/webhooks -> webhook route: <your.controlpanel.gg>/payment/StripeWebhooks
2021-12-16 17:03:38 +00:00
STRIPE_ENDPOINT_TEST_SECRET=
STRIPE_ENDPOINT_SECRET=
#stripe payment methods, comma seperated list of methods you want to support:
#read into https://stripe.com/docs/payments/payment-methods/integration-options and/or https://stripe.com/docs/payments/payment-methods/overview
2021-12-17 10:38:40 +00:00
#Method needs to support the currency
STRIPE_METHODS=
#set-up for extra discord verification
2021-06-05 09:26:32 +00:00
DISCORD_CLIENT_ID=
DISCORD_CLIENT_SECRET=
#set-up will join users automaticly to your discord
DISCORD_BOT_TOKEN=
DISCORD_GUILD_ID=
#set-up will give the verified user the given role
DISCORD_ROLE_ID=
2021-06-05 09:26:32 +00:00
#nesseary URL's
PTERODACTYL_URL=https://panel.controlpanel.gg
PHPMYADMIN_URL=https://mysql.controlpanel.gg #optional. remove to remove database button
DISCORD_INVITE_URL=https://discord.gg/vrUYdxG4wZ
2021-06-05 09:26:32 +00:00
#GOOGLE RECAPTCHA
RECAPTCHA_SITE_KEY=6LeIxAcTAAAAAJcZVRqyHh71UMIEGNQ_MXjiZKhI
RECAPTCHA_SECRET_KEY=6LeIxAcTAAAAAGG-vFI1TnRWxMZNFuojJ4WifJWe
2021-06-05 09:26:32 +00:00
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}"
2021-06-05 09:26:32 +00:00
#you can leave everything below the way it is
2021-06-09 18:11:04 +00:00
LOG_CHANNEL=stack
LOG_LEVEL=debug
2021-06-05 09:26:32 +00:00
BROADCAST_DRIVER=log
CACHE_DRIVER=file
QUEUE_CONNECTION=database
SESSION_DRIVER=file
SESSION_LIFETIME=120
MEMCACHED_HOST=127.0.0.1
REDIS_HOST=127.0.0.1
REDIS_PASSWORD=null
REDIS_PORT=6379
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
MIX_PUSHER_APP_KEY="${PUSHER_APP_KEY}"
MIX_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}"