├── .env ├── .gitignore ├── .vscode └── launch.json ├── .warden └── commands │ ├── bootstrap.cmd │ └── bootstrap.help ├── README.md ├── backfill └── .gitkeep └── webroot └── app └── etc └── env.php.init.php /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wardenenv/warden-env-magento2/HEAD/.env -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wardenenv/warden-env-magento2/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wardenenv/warden-env-magento2/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.warden/commands/bootstrap.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wardenenv/warden-env-magento2/HEAD/.warden/commands/bootstrap.cmd -------------------------------------------------------------------------------- /.warden/commands/bootstrap.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wardenenv/warden-env-magento2/HEAD/.warden/commands/bootstrap.help -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wardenenv/warden-env-magento2/HEAD/README.md -------------------------------------------------------------------------------- /backfill/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webroot/app/etc/env.php.init.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wardenenv/warden-env-magento2/HEAD/webroot/app/etc/env.php.init.php --------------------------------------------------------------------------------