├── .ddev ├── config.yaml ├── docker-compose.network-mtu.yaml └── run-phpstorm.sh ├── .editorconfig ├── .gitattributes ├── .github └── FUNDING.yml ├── .gitignore ├── .gitpod.yml ├── .theia └── launch.json ├── .vscode └── launch.json ├── LICENSE ├── README.md ├── composer.json ├── composer.old.lock └── web ├── .csslintrc ├── .eslintignore ├── .eslintrc.json ├── .ht.router.php ├── .htaccess ├── INSTALL.txt ├── autoload.php ├── example.gitignore ├── index.php ├── robots.txt ├── sites ├── default │ ├── default.services.yml │ ├── default.settings.php │ ├── services.yml │ └── settings.php ├── development.services.yml ├── example.settings.local.php └── example.sites.php ├── update.php └── web.config /.ddev/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imrodmartin/ddev-gitpod/HEAD/.ddev/config.yaml -------------------------------------------------------------------------------- /.ddev/docker-compose.network-mtu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imrodmartin/ddev-gitpod/HEAD/.ddev/docker-compose.network-mtu.yaml -------------------------------------------------------------------------------- /.ddev/run-phpstorm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imrodmartin/ddev-gitpod/HEAD/.ddev/run-phpstorm.sh -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imrodmartin/ddev-gitpod/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imrodmartin/ddev-gitpod/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imrodmartin/ddev-gitpod/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imrodmartin/ddev-gitpod/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imrodmartin/ddev-gitpod/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /.theia/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imrodmartin/ddev-gitpod/HEAD/.theia/launch.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imrodmartin/ddev-gitpod/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imrodmartin/ddev-gitpod/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imrodmartin/ddev-gitpod/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imrodmartin/ddev-gitpod/HEAD/composer.json -------------------------------------------------------------------------------- /composer.old.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imrodmartin/ddev-gitpod/HEAD/composer.old.lock -------------------------------------------------------------------------------- /web/.csslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imrodmartin/ddev-gitpod/HEAD/web/.csslintrc -------------------------------------------------------------------------------- /web/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imrodmartin/ddev-gitpod/HEAD/web/.eslintignore -------------------------------------------------------------------------------- /web/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./core/.eslintrc.json" 3 | } 4 | -------------------------------------------------------------------------------- /web/.ht.router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imrodmartin/ddev-gitpod/HEAD/web/.ht.router.php -------------------------------------------------------------------------------- /web/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imrodmartin/ddev-gitpod/HEAD/web/.htaccess -------------------------------------------------------------------------------- /web/INSTALL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imrodmartin/ddev-gitpod/HEAD/web/INSTALL.txt -------------------------------------------------------------------------------- /web/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imrodmartin/ddev-gitpod/HEAD/web/autoload.php -------------------------------------------------------------------------------- /web/example.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imrodmartin/ddev-gitpod/HEAD/web/example.gitignore -------------------------------------------------------------------------------- /web/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imrodmartin/ddev-gitpod/HEAD/web/index.php -------------------------------------------------------------------------------- /web/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imrodmartin/ddev-gitpod/HEAD/web/robots.txt -------------------------------------------------------------------------------- /web/sites/default/default.services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imrodmartin/ddev-gitpod/HEAD/web/sites/default/default.services.yml -------------------------------------------------------------------------------- /web/sites/default/default.settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imrodmartin/ddev-gitpod/HEAD/web/sites/default/default.settings.php -------------------------------------------------------------------------------- /web/sites/default/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imrodmartin/ddev-gitpod/HEAD/web/sites/default/services.yml -------------------------------------------------------------------------------- /web/sites/default/settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imrodmartin/ddev-gitpod/HEAD/web/sites/default/settings.php -------------------------------------------------------------------------------- /web/sites/development.services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imrodmartin/ddev-gitpod/HEAD/web/sites/development.services.yml -------------------------------------------------------------------------------- /web/sites/example.settings.local.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imrodmartin/ddev-gitpod/HEAD/web/sites/example.settings.local.php -------------------------------------------------------------------------------- /web/sites/example.sites.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imrodmartin/ddev-gitpod/HEAD/web/sites/example.sites.php -------------------------------------------------------------------------------- /web/update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imrodmartin/ddev-gitpod/HEAD/web/update.php -------------------------------------------------------------------------------- /web/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imrodmartin/ddev-gitpod/HEAD/web/web.config --------------------------------------------------------------------------------