diff --git a/.dockerignore b/drupal/.dockerignore similarity index 100% rename from .dockerignore rename to drupal/.dockerignore diff --git a/.env.example b/drupal/.env.example similarity index 100% rename from .env.example rename to drupal/.env.example diff --git a/.githooks/pre-push b/drupal/.githooks/pre-push similarity index 100% rename from .githooks/pre-push rename to drupal/.githooks/pre-push diff --git a/.githooks/prepare-commit-msg b/drupal/.githooks/prepare-commit-msg similarity index 100% rename from .githooks/prepare-commit-msg rename to drupal/.githooks/prepare-commit-msg diff --git a/.github/workflows/ci.yml b/drupal/.github/workflows/ci.yml similarity index 100% rename from .github/workflows/ci.yml rename to drupal/.github/workflows/ci.yml diff --git a/.gitignore b/drupal/.gitignore similarity index 100% rename from .gitignore rename to drupal/.gitignore diff --git a/.hadolint.yaml b/drupal/.hadolint.yaml similarity index 100% rename from .hadolint.yaml rename to drupal/.hadolint.yaml diff --git a/CHANGELOG.md b/drupal/CHANGELOG.md similarity index 100% rename from CHANGELOG.md rename to drupal/CHANGELOG.md diff --git a/Dockerfile b/drupal/Dockerfile similarity index 100% rename from Dockerfile rename to drupal/Dockerfile diff --git a/README.md b/drupal/README.md similarity index 100% rename from README.md rename to drupal/README.md diff --git a/build.yaml b/drupal/build.yaml similarity index 100% rename from build.yaml rename to drupal/build.yaml diff --git a/composer.json b/drupal/composer.json similarity index 100% rename from composer.json rename to drupal/composer.json diff --git a/composer.lock b/drupal/composer.lock similarity index 100% rename from composer.lock rename to drupal/composer.lock diff --git a/docker-compose.override.yaml.example b/drupal/docker-compose.override.yaml.example similarity index 100% rename from docker-compose.override.yaml.example rename to drupal/docker-compose.override.yaml.example diff --git a/docker-compose.yaml b/drupal/docker-compose.yaml similarity index 100% rename from docker-compose.yaml rename to drupal/docker-compose.yaml diff --git a/phpcs.xml.dist b/drupal/phpcs.xml.dist similarity index 100% rename from phpcs.xml.dist rename to drupal/phpcs.xml.dist diff --git a/phpstan.neon.dist b/drupal/phpstan.neon.dist similarity index 100% rename from phpstan.neon.dist rename to drupal/phpstan.neon.dist diff --git a/phpunit.xml.dist b/drupal/phpunit.xml.dist similarity index 100% rename from phpunit.xml.dist rename to drupal/phpunit.xml.dist diff --git a/run b/drupal/run similarity index 100% rename from run rename to drupal/run diff --git a/tools/docker/images/php/root/usr/local/bin/docker-entrypoint-php b/drupal/tools/docker/images/php/root/usr/local/bin/docker-entrypoint-php similarity index 100% rename from tools/docker/images/php/root/usr/local/bin/docker-entrypoint-php rename to drupal/tools/docker/images/php/root/usr/local/bin/docker-entrypoint-php diff --git a/tools/docker/images/php/root/usr/local/etc/php/conf.d/xdebug.ini b/drupal/tools/docker/images/php/root/usr/local/etc/php/conf.d/xdebug.ini similarity index 100% rename from tools/docker/images/php/root/usr/local/etc/php/conf.d/xdebug.ini rename to drupal/tools/docker/images/php/root/usr/local/etc/php/conf.d/xdebug.ini diff --git a/tools/docker/images/php/root/usr/local/etc/php/php.ini b/drupal/tools/docker/images/php/root/usr/local/etc/php/php.ini similarity index 100% rename from tools/docker/images/php/root/usr/local/etc/php/php.ini rename to drupal/tools/docker/images/php/root/usr/local/etc/php/php.ini diff --git a/tools/docker/images/web/root/etc/nginx/conf.d/default.conf b/drupal/tools/docker/images/web/root/etc/nginx/conf.d/default.conf similarity index 100% rename from tools/docker/images/web/root/etc/nginx/conf.d/default.conf rename to drupal/tools/docker/images/web/root/etc/nginx/conf.d/default.conf diff --git a/web/modules/custom/example/.gitignore b/drupal/web/modules/custom/example/.gitignore similarity index 100% rename from web/modules/custom/example/.gitignore rename to drupal/web/modules/custom/example/.gitignore diff --git a/web/modules/custom/example/composer.json b/drupal/web/modules/custom/example/composer.json similarity index 100% rename from web/modules/custom/example/composer.json rename to drupal/web/modules/custom/example/composer.json diff --git a/web/modules/custom/example/example.info.yml b/drupal/web/modules/custom/example/example.info.yml similarity index 100% rename from web/modules/custom/example/example.info.yml rename to drupal/web/modules/custom/example/example.info.yml diff --git a/web/modules/custom/example/example.routing.yml b/drupal/web/modules/custom/example/example.routing.yml similarity index 100% rename from web/modules/custom/example/example.routing.yml rename to drupal/web/modules/custom/example/example.routing.yml diff --git a/web/modules/custom/example/example.services.yml b/drupal/web/modules/custom/example/example.services.yml similarity index 100% rename from web/modules/custom/example/example.services.yml rename to drupal/web/modules/custom/example/example.services.yml diff --git a/web/modules/custom/example/phpcs.xml.dist b/drupal/web/modules/custom/example/phpcs.xml.dist similarity index 100% rename from web/modules/custom/example/phpcs.xml.dist rename to drupal/web/modules/custom/example/phpcs.xml.dist diff --git a/web/modules/custom/example/src/Controller/ExamplePageController.php b/drupal/web/modules/custom/example/src/Controller/ExamplePageController.php similarity index 100% rename from web/modules/custom/example/src/Controller/ExamplePageController.php rename to drupal/web/modules/custom/example/src/Controller/ExamplePageController.php diff --git a/web/modules/custom/example/tests/src/Functional/ExamplePageTest.php b/drupal/web/modules/custom/example/tests/src/Functional/ExamplePageTest.php similarity index 100% rename from web/modules/custom/example/tests/src/Functional/ExamplePageTest.php rename to drupal/web/modules/custom/example/tests/src/Functional/ExamplePageTest.php diff --git a/web/modules/custom/example/tests/src/Kernel/.keep b/drupal/web/modules/custom/example/tests/src/Kernel/.keep similarity index 100% rename from web/modules/custom/example/tests/src/Kernel/.keep rename to drupal/web/modules/custom/example/tests/src/Kernel/.keep diff --git a/web/modules/custom/example/tests/src/Unit/.keep b/drupal/web/modules/custom/example/tests/src/Unit/.keep similarity index 100% rename from web/modules/custom/example/tests/src/Unit/.keep rename to drupal/web/modules/custom/example/tests/src/Unit/.keep diff --git a/web/modules/drupal-module-template b/drupal/web/modules/drupal-module-template similarity index 100% rename from web/modules/drupal-module-template rename to drupal/web/modules/drupal-module-template diff --git a/web/modules/override_node_options b/drupal/web/modules/override_node_options similarity index 100% rename from web/modules/override_node_options rename to drupal/web/modules/override_node_options