load(); } // Define additional PHP constants // (see https://craftcms.com/docs/3.x/config/#php-constants) define('CRAFT_ENVIRONMENT', getenv('ENVIRONMENT') ?: 'production'); define('CRAFT_LICENSE_KEY', getenv('CRAFT_LICENSE_KEY')); define('CRAFT_STORAGE_PATH', getenv('CRAFT_STORAGE_PATH') ?: '../storage'); // ... // Load and run Craft /** @var craft\web\Application $app */ $app = require CRAFT_VENDOR_PATH . '/craftcms/cms/bootstrap/web.php'; $app->run();