Configuration Generator
Generate a configuration file
Use the builder below to generate a .env file
APP_NAME=phpvmsAPP_URL=https://https://APP_ENV=productionAPP_DEBUG=falseAPP_LOCALE=enDB_CONNECTION=mysqlDB_URL=MAIL_MAILER=smtpMAIL_HOST=127.0.0.1MAIL_PORT=2525CADDY_AUTO_HTTPS=onSERVER_NAME=https://SSL_MODE=fullAPP_ENV
Set to production when going live. Default is dev.
APP_ENV=productionAPP_DEBUG
Controls error verbosity. Keep true while developing — set false in
production so users don't see stack traces.
APP_DEBUG=false
DEBUG_TOOLBAR=falseLanguage
Change the system language to any available translation. Locale codes match
folder names under phpvms/resources/lang/.
For Brazilian Portuguese, confirm phpvms/resources/lang/pt-br exists, then set
in .env:
APP_LOCALE=pt-brAfter editing .env
Clear the application cache so changes take effect:
php artisan config:clear
php artisan cache:clearIf you skip this, your edits won't load.