Configuration Generator

Generate a configuration file

Use the builder below to generate a .env file

.env
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=full

APP_ENV

Set to production when going live. Default is dev.

.env
APP_ENV=production

APP_DEBUG

Controls error verbosity. Keep true while developing — set false in production so users don't see stack traces.

.env
APP_DEBUG=false
DEBUG_TOOLBAR=false

Language

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:

.env
APP_LOCALE=pt-br

After editing .env

Clear the application cache so changes take effect:

php artisan config:clear
php artisan cache:clear

If you skip this, your edits won't load.

On this page