ENV to JSON Examples
Use this guide when migrating env config to app-friendly JSON structures.
Example mapping
APP_ENV=production
APP_DEBUG=false
API_URL=https://api.example.com
{
"APP_ENV": "production",
"APP_DEBUG": "false",
"API_URL": "https://api.example.com"
}