diff --git a/.circleci/config.yml b/.circleci/config.yml
index 7d3172c87..2c492ff14 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -32,7 +32,7 @@ aliases:
   # Specify the correct repository to prevent the bot from accessing all
   # repositories available via $RENOVATE_TOKEN.
   #;< DREVOPS_DEV
-  - &renovatebot_repository 'drevops/drevops-destination'
+  - &renovatebot_repository 'drevops/scaffold-destination'
   #;> DREVOPS_DEV
   ##### - &renovatebot_repository 'your_org/your_site'
   # The schedule to run RenovateBot on. Defaults to running twice a day.
diff --git a/.drevops/docs/content/contributing/README.md b/.drevops/docs/content/contributing/README.md
index 09d489a46..1515fd62b 100644
--- a/.drevops/docs/content/contributing/README.md
+++ b/.drevops/docs/content/contributing/README.md
@@ -13,11 +13,11 @@ your willingness to assist!
 
 We're constantly eager to address any issues, so your reports are always
 appreciated. However, we kindly ask you to first check if your problem has
-already been reported in the [issue queue](https://github.com/drevops/drevops/issues).
+already been reported in the [issue queue](https://github.com/drevops/scaffold/issues).
 
 ## I want to suggest a feature or an idea
 
-Fantastic! Please [submit your idea](https://github.com/drevops/drevops/issues)
+Fantastic! Please [submit your idea](https://github.com/drevops/scaffold/issues)
 and we'll gladly review it. While we can't promise every suggestion will be
 implemented, we are always keen to hear innovative ideas for enhancing DrevOps.
 
diff --git a/.drevops/docs/content/contributing/maintenance/tests.md b/.drevops/docs/content/contributing/maintenance/tests.md
index 2bf87c1be..6e2f8eebb 100644
--- a/.drevops/docs/content/contributing/maintenance/tests.md
+++ b/.drevops/docs/content/contributing/maintenance/tests.md
@@ -55,7 +55,7 @@ AHOY_CONFIRM_RESPONSE=1 ahoy build
 ahoy export-db
 ```
 4. Make sure that exported DB does not have data in `cache_*` and `watchdog` tables.
-5. Upload DB to https://github.com/drevops/drevops/wiki as a test file (`db.distN.sql`).
+5. Upload DB to https://github.com/drevops/scaffold/wiki as a test file (`db.distN.sql`).
 6. Update references in code from `db.demo.sql` to `db.distN.sql`.
 7. Run CI build.
 8. Revert updated references to `db.demo.sql`.
diff --git a/.drevops/docs/content/introduction/faqs.md b/.drevops/docs/content/introduction/faqs.md
index fb1d5bfcb..607edf591 100644
--- a/.drevops/docs/content/introduction/faqs.md
+++ b/.drevops/docs/content/introduction/faqs.md
@@ -46,7 +46,7 @@ but you do not have to use it.
 Yes, you can change anything you want. DrevOps is a project template, which
 means that you can disable/remove certain features.
 
-Feel free to [open an issue](https://github.com/drevops/drevops/issues) to
+Feel free to [open an issue](https://github.com/drevops/scaffold/issues) to
 discuss any of the decisions made in DrevOps.
 
 ## I do not need all these features? It looks like an overkill.
@@ -72,7 +72,7 @@ to stay in order to make tools talk to each other.
 
 There could be some cases when it is unreasonably opinionated - we consider this
 as a bug and would be happy to fix it. Please provide your feedback in the
-[issue queue](https://github.com/drevops/drevops/issues).
+[issue queue](https://github.com/drevops/scaffold/issues).
 
 ## How easy is it to upgrade DrevOps?
 
diff --git a/.drevops/docs/docker-compose.yml b/.drevops/docs/docker-compose.yml
index 6dee7b965..d639edd20 100644
--- a/.drevops/docs/docker-compose.yml
+++ b/.drevops/docs/docker-compose.yml
@@ -6,7 +6,7 @@ services:
       dockerfile: ./.utils/Dockerfile
     environment:
       LAGOON_LOCALDEV_HTTP_PORT: 8080
-      DREVOPS_LOCALDEV_URL: drevops-docs.docker.amazee.io:8080
+      DREVOPS_LOCALDEV_URL: scaffold-docs.docker.amazee.io:8080
     networks:
       - amazeeio-network
       - default
diff --git a/.drevops/docs/mkdocs.yml b/.drevops/docs/mkdocs.yml
index 261155637..7e93bed82 100644
--- a/.drevops/docs/mkdocs.yml
+++ b/.drevops/docs/mkdocs.yml
@@ -18,8 +18,8 @@ site_description: Documentation for DrevOps Drupal project template
 site_url: https://docs.drevops.com
 
 # Repository
-repo_name: drevops/drevops
-repo_url: https://github.com/drevops/drevops
+repo_name: drevops/scaffold
+repo_url: https://github.com/drevops/scaffold
 edit_uri: edit/main/.drevops/docs/content
 # Copyright
 copyright: 'Copyright &copy;2023 DrevOps<sup>&reg;</sup><br/><strong><a href="https://drupal.org">Drupal</a></strong> is a registered trademark of <a href="http://buytaert.net/">Dries Buytaert</a>'
@@ -88,7 +88,7 @@ plugins:
       patterns:
         - rel_to_abs: # Pattern name, can be anything
             oldvalue: "../../../../"
-            newvalue: "https://github.com/drevops/drevops/tree/main/"
+            newvalue: "https://github.com/drevops/scaffold/tree/main/"
   - redirects:
       redirect_maps:
         'variables.md': 'workflows/variables.md'
@@ -99,7 +99,7 @@ plugins:
 extra:
   social:
     - icon: fontawesome/brands/github
-      link: https://github.com/drevops/drevops
+      link: https://github.com/drevops/scaffold
     - icon: fontawesome/regular/envelope
       link: mailto:support@drevops.com
   analytics:
diff --git a/.drevops/tests/bats/_helper.bash b/.drevops/tests/bats/_helper.bash
index 46df96c91..656fa0ebb 100644
--- a/.drevops/tests/bats/_helper.bash
+++ b/.drevops/tests/bats/_helper.bash
@@ -150,7 +150,7 @@ setup() {
   # Demo DB is what is being downloaded when the installer runs for the first
   # time do demonstrate downloading from CURL and importing from the DB dump
   # functionality.
-  export DREVOPS_INSTALL_DEMO_DB_TEST=https://github.com/drevops/drevops/releases/download/1.18.0/db_d10.test.sql
+  export DREVOPS_INSTALL_DEMO_DB_TEST=https://github.com/drevops/scaffold/releases/download/1.18.0/db_d10.test.sql
 
   ##
   ## Phase 5: SUT files setup.
@@ -253,7 +253,7 @@ assert_files_present_common() {
 
   # Assert that DrevOps version was replaced.
   assert_file_contains "README.md" "badge/DrevOps-${DREVOPS_VERSION:-develop}-blue.svg"
-  assert_file_contains "README.md" "https://github.com/drevops/drevops/tree/${DREVOPS_VERSION:-develop}"
+  assert_file_contains "README.md" "https://github.com/drevops/scaffold/tree/${DREVOPS_VERSION:-develop}"
   assert_file_not_contains "README.md" "The following list includes"
   assert_file_not_exists "README.dist.md"
 
@@ -905,7 +905,7 @@ Drupal 10 implementation of ${name} for ${org}
 
 [//]: # (DO NOT REMOVE THE BADGE BELOW. IT IS USED BY DREVOPS TO TRACK INTEGRATION)
 
-[![DrevOps](https://img.shields.io/badge/DrevOps-DREVOPS_VERSION_URLENCODED-blue.svg)](https://github.com/drevops/drevops/tree/DREVOPS_VERSION)
+[![DrevOps](https://img.shields.io/badge/DrevOps-DREVOPS_VERSION_URLENCODED-blue.svg)](https://github.com/drevops/scaffold/tree/DREVOPS_VERSION)
 
 some other text
 EOT
diff --git a/.drevops/tests/bats/fixtures/docker-compose.env.json b/.drevops/tests/bats/fixtures/docker-compose.env.json
index 209791323..142e9c059 100644
--- a/.drevops/tests/bats/fixtures/docker-compose.env.json
+++ b/.drevops/tests/bats/fixtures/docker-compose.env.json
@@ -26,7 +26,7 @@
                 "DREVOPS_ACQUIA_APP_NAME": "",
                 "DREVOPS_DB_DIR": "./.data",
                 "DREVOPS_DB_DOWNLOAD_ACQUIA_DB_NAME": "your_site",
-                "DREVOPS_DB_DOWNLOAD_CURL_URL": "https://github.com/drevops/drevops/releases/download/1.18.0/db_d10.demo.sql",
+                "DREVOPS_DB_DOWNLOAD_CURL_URL": "https://github.com/drevops/scaffold/releases/download/1.18.0/db_d10.demo.sql",
                 "DREVOPS_DB_DOWNLOAD_ENVIRONMENT": "prod",
                 "DREVOPS_DB_DOWNLOAD_FTP_FILE": "db.sql",
                 "DREVOPS_DB_DOWNLOAD_FTP_HOST": "",
@@ -99,7 +99,7 @@
                 "DREVOPS_ACQUIA_APP_NAME": "",
                 "DREVOPS_DB_DIR": "./.data",
                 "DREVOPS_DB_DOWNLOAD_ACQUIA_DB_NAME": "your_site",
-                "DREVOPS_DB_DOWNLOAD_CURL_URL": "https://github.com/drevops/drevops/releases/download/1.18.0/db_d10.demo.sql",
+                "DREVOPS_DB_DOWNLOAD_CURL_URL": "https://github.com/drevops/scaffold/releases/download/1.18.0/db_d10.demo.sql",
                 "DREVOPS_DB_DOWNLOAD_ENVIRONMENT": "prod",
                 "DREVOPS_DB_DOWNLOAD_FTP_FILE": "db.sql",
                 "DREVOPS_DB_DOWNLOAD_FTP_HOST": "",
@@ -172,7 +172,7 @@
                 "DREVOPS_ACQUIA_APP_NAME": "",
                 "DREVOPS_DB_DIR": "./.data",
                 "DREVOPS_DB_DOWNLOAD_ACQUIA_DB_NAME": "your_site",
-                "DREVOPS_DB_DOWNLOAD_CURL_URL": "https://github.com/drevops/drevops/releases/download/1.18.0/db_d10.demo.sql",
+                "DREVOPS_DB_DOWNLOAD_CURL_URL": "https://github.com/drevops/scaffold/releases/download/1.18.0/db_d10.demo.sql",
                 "DREVOPS_DB_DOWNLOAD_ENVIRONMENT": "prod",
                 "DREVOPS_DB_DOWNLOAD_FTP_FILE": "db.sql",
                 "DREVOPS_DB_DOWNLOAD_FTP_HOST": "",
@@ -254,7 +254,7 @@
                 "DREVOPS_ACQUIA_APP_NAME": "",
                 "DREVOPS_DB_DIR": "./.data",
                 "DREVOPS_DB_DOWNLOAD_ACQUIA_DB_NAME": "your_site",
-                "DREVOPS_DB_DOWNLOAD_CURL_URL": "https://github.com/drevops/drevops/releases/download/1.18.0/db_d10.demo.sql",
+                "DREVOPS_DB_DOWNLOAD_CURL_URL": "https://github.com/drevops/scaffold/releases/download/1.18.0/db_d10.demo.sql",
                 "DREVOPS_DB_DOWNLOAD_ENVIRONMENT": "prod",
                 "DREVOPS_DB_DOWNLOAD_FTP_FILE": "db.sql",
                 "DREVOPS_DB_DOWNLOAD_FTP_HOST": "",
@@ -333,7 +333,7 @@
                 "DREVOPS_ACQUIA_APP_NAME": "",
                 "DREVOPS_DB_DIR": "./.data",
                 "DREVOPS_DB_DOWNLOAD_ACQUIA_DB_NAME": "your_site",
-                "DREVOPS_DB_DOWNLOAD_CURL_URL": "https://github.com/drevops/drevops/releases/download/1.18.0/db_d10.demo.sql",
+                "DREVOPS_DB_DOWNLOAD_CURL_URL": "https://github.com/drevops/scaffold/releases/download/1.18.0/db_d10.demo.sql",
                 "DREVOPS_DB_DOWNLOAD_ENVIRONMENT": "prod",
                 "DREVOPS_DB_DOWNLOAD_FTP_FILE": "db.sql",
                 "DREVOPS_DB_DOWNLOAD_FTP_HOST": "",
@@ -422,7 +422,7 @@
                 "DREVOPS_ACQUIA_APP_NAME": "",
                 "DREVOPS_DB_DIR": "./.data",
                 "DREVOPS_DB_DOWNLOAD_ACQUIA_DB_NAME": "your_site",
-                "DREVOPS_DB_DOWNLOAD_CURL_URL": "https://github.com/drevops/drevops/releases/download/1.18.0/db_d10.demo.sql",
+                "DREVOPS_DB_DOWNLOAD_CURL_URL": "https://github.com/drevops/scaffold/releases/download/1.18.0/db_d10.demo.sql",
                 "DREVOPS_DB_DOWNLOAD_ENVIRONMENT": "prod",
                 "DREVOPS_DB_DOWNLOAD_FTP_FILE": "db.sql",
                 "DREVOPS_DB_DOWNLOAD_FTP_HOST": "",
@@ -521,7 +521,7 @@
                 "DREVOPS_ACQUIA_APP_NAME": "",
                 "DREVOPS_DB_DIR": "./.data",
                 "DREVOPS_DB_DOWNLOAD_ACQUIA_DB_NAME": "your_site",
-                "DREVOPS_DB_DOWNLOAD_CURL_URL": "https://github.com/drevops/drevops/releases/download/1.18.0/db_d10.demo.sql",
+                "DREVOPS_DB_DOWNLOAD_CURL_URL": "https://github.com/drevops/scaffold/releases/download/1.18.0/db_d10.demo.sql",
                 "DREVOPS_DB_DOWNLOAD_ENVIRONMENT": "prod",
                 "DREVOPS_DB_DOWNLOAD_FTP_FILE": "db.sql",
                 "DREVOPS_DB_DOWNLOAD_FTP_HOST": "",
diff --git a/.drevops/tests/bats/fixtures/docker-compose.env_local.json b/.drevops/tests/bats/fixtures/docker-compose.env_local.json
index 55e0a3b97..c471ca7f8 100644
--- a/.drevops/tests/bats/fixtures/docker-compose.env_local.json
+++ b/.drevops/tests/bats/fixtures/docker-compose.env_local.json
@@ -30,7 +30,7 @@
                 "DREVOPS_ACQUIA_SECRET": "",
                 "DREVOPS_DB_DIR": "./.data",
                 "DREVOPS_DB_DOWNLOAD_ACQUIA_DB_NAME": "your_site",
-                "DREVOPS_DB_DOWNLOAD_CURL_URL": "https://github.com/drevops/drevops/releases/download/1.18.0/db_d10.demo.sql",
+                "DREVOPS_DB_DOWNLOAD_CURL_URL": "https://github.com/drevops/scaffold/releases/download/1.18.0/db_d10.demo.sql",
                 "DREVOPS_DB_DOWNLOAD_ENVIRONMENT": "prod",
                 "DREVOPS_DB_DOWNLOAD_FORCE": "1",
                 "DREVOPS_DB_DOWNLOAD_FTP_FILE": "db.sql",
@@ -112,7 +112,7 @@
                 "DREVOPS_ACQUIA_SECRET": "",
                 "DREVOPS_DB_DIR": "./.data",
                 "DREVOPS_DB_DOWNLOAD_ACQUIA_DB_NAME": "your_site",
-                "DREVOPS_DB_DOWNLOAD_CURL_URL": "https://github.com/drevops/drevops/releases/download/1.18.0/db_d10.demo.sql",
+                "DREVOPS_DB_DOWNLOAD_CURL_URL": "https://github.com/drevops/scaffold/releases/download/1.18.0/db_d10.demo.sql",
                 "DREVOPS_DB_DOWNLOAD_ENVIRONMENT": "prod",
                 "DREVOPS_DB_DOWNLOAD_FORCE": "1",
                 "DREVOPS_DB_DOWNLOAD_FTP_FILE": "db.sql",
@@ -194,7 +194,7 @@
                 "DREVOPS_ACQUIA_SECRET": "",
                 "DREVOPS_DB_DIR": "./.data",
                 "DREVOPS_DB_DOWNLOAD_ACQUIA_DB_NAME": "your_site",
-                "DREVOPS_DB_DOWNLOAD_CURL_URL": "https://github.com/drevops/drevops/releases/download/1.18.0/db_d10.demo.sql",
+                "DREVOPS_DB_DOWNLOAD_CURL_URL": "https://github.com/drevops/scaffold/releases/download/1.18.0/db_d10.demo.sql",
                 "DREVOPS_DB_DOWNLOAD_ENVIRONMENT": "prod",
                 "DREVOPS_DB_DOWNLOAD_FORCE": "1",
                 "DREVOPS_DB_DOWNLOAD_FTP_FILE": "db.sql",
@@ -285,7 +285,7 @@
                 "DREVOPS_ACQUIA_SECRET": "",
                 "DREVOPS_DB_DIR": "./.data",
                 "DREVOPS_DB_DOWNLOAD_ACQUIA_DB_NAME": "your_site",
-                "DREVOPS_DB_DOWNLOAD_CURL_URL": "https://github.com/drevops/drevops/releases/download/1.18.0/db_d10.demo.sql",
+                "DREVOPS_DB_DOWNLOAD_CURL_URL": "https://github.com/drevops/scaffold/releases/download/1.18.0/db_d10.demo.sql",
                 "DREVOPS_DB_DOWNLOAD_ENVIRONMENT": "prod",
                 "DREVOPS_DB_DOWNLOAD_FORCE": "1",
                 "DREVOPS_DB_DOWNLOAD_FTP_FILE": "db.sql",
@@ -373,7 +373,7 @@
                 "DREVOPS_ACQUIA_SECRET": "",
                 "DREVOPS_DB_DIR": "./.data",
                 "DREVOPS_DB_DOWNLOAD_ACQUIA_DB_NAME": "your_site",
-                "DREVOPS_DB_DOWNLOAD_CURL_URL": "https://github.com/drevops/drevops/releases/download/1.18.0/db_d10.demo.sql",
+                "DREVOPS_DB_DOWNLOAD_CURL_URL": "https://github.com/drevops/scaffold/releases/download/1.18.0/db_d10.demo.sql",
                 "DREVOPS_DB_DOWNLOAD_ENVIRONMENT": "prod",
                 "DREVOPS_DB_DOWNLOAD_FORCE": "1",
                 "DREVOPS_DB_DOWNLOAD_FTP_FILE": "db.sql",
@@ -471,7 +471,7 @@
                 "DREVOPS_ACQUIA_SECRET": "",
                 "DREVOPS_DB_DIR": "./.data",
                 "DREVOPS_DB_DOWNLOAD_ACQUIA_DB_NAME": "your_site",
-                "DREVOPS_DB_DOWNLOAD_CURL_URL": "https://github.com/drevops/drevops/releases/download/1.18.0/db_d10.demo.sql",
+                "DREVOPS_DB_DOWNLOAD_CURL_URL": "https://github.com/drevops/scaffold/releases/download/1.18.0/db_d10.demo.sql",
                 "DREVOPS_DB_DOWNLOAD_ENVIRONMENT": "prod",
                 "DREVOPS_DB_DOWNLOAD_FORCE": "1",
                 "DREVOPS_DB_DOWNLOAD_FTP_FILE": "db.sql",
@@ -579,7 +579,7 @@
                 "DREVOPS_ACQUIA_SECRET": "",
                 "DREVOPS_DB_DIR": "./.data",
                 "DREVOPS_DB_DOWNLOAD_ACQUIA_DB_NAME": "your_site",
-                "DREVOPS_DB_DOWNLOAD_CURL_URL": "https://github.com/drevops/drevops/releases/download/1.18.0/db_d10.demo.sql",
+                "DREVOPS_DB_DOWNLOAD_CURL_URL": "https://github.com/drevops/scaffold/releases/download/1.18.0/db_d10.demo.sql",
                 "DREVOPS_DB_DOWNLOAD_ENVIRONMENT": "prod",
                 "DREVOPS_DB_DOWNLOAD_FORCE": "1",
                 "DREVOPS_DB_DOWNLOAD_FTP_FILE": "db.sql",
diff --git a/.drevops/tests/bats/fixtures/docker-compose.env_mod.json b/.drevops/tests/bats/fixtures/docker-compose.env_mod.json
index b354d5698..a46497315 100644
--- a/.drevops/tests/bats/fixtures/docker-compose.env_mod.json
+++ b/.drevops/tests/bats/fixtures/docker-compose.env_mod.json
@@ -28,7 +28,7 @@
                 "DREVOPS_DB_DIR": "./.data",
                 "DREVOPS_DB_DOCKER_IMAGE": "myorg/my_db_image",
                 "DREVOPS_DB_DOWNLOAD_ACQUIA_DB_NAME": "your_site",
-                "DREVOPS_DB_DOWNLOAD_CURL_URL": "https://github.com/drevops/drevops/releases/download/1.18.0/db_d10.demo.sql",
+                "DREVOPS_DB_DOWNLOAD_CURL_URL": "https://github.com/drevops/scaffold/releases/download/1.18.0/db_d10.demo.sql",
                 "DREVOPS_DB_DOWNLOAD_ENVIRONMENT": "prod",
                 "DREVOPS_DB_DOWNLOAD_FTP_FILE": "db.sql",
                 "DREVOPS_DB_DOWNLOAD_FTP_HOST": "",
@@ -103,7 +103,7 @@
                 "DREVOPS_DB_DIR": "./.data",
                 "DREVOPS_DB_DOCKER_IMAGE": "myorg/my_db_image",
                 "DREVOPS_DB_DOWNLOAD_ACQUIA_DB_NAME": "your_site",
-                "DREVOPS_DB_DOWNLOAD_CURL_URL": "https://github.com/drevops/drevops/releases/download/1.18.0/db_d10.demo.sql",
+                "DREVOPS_DB_DOWNLOAD_CURL_URL": "https://github.com/drevops/scaffold/releases/download/1.18.0/db_d10.demo.sql",
                 "DREVOPS_DB_DOWNLOAD_ENVIRONMENT": "prod",
                 "DREVOPS_DB_DOWNLOAD_FTP_FILE": "db.sql",
                 "DREVOPS_DB_DOWNLOAD_FTP_HOST": "",
@@ -178,7 +178,7 @@
                 "DREVOPS_DB_DIR": "./.data",
                 "DREVOPS_DB_DOCKER_IMAGE": "myorg/my_db_image",
                 "DREVOPS_DB_DOWNLOAD_ACQUIA_DB_NAME": "your_site",
-                "DREVOPS_DB_DOWNLOAD_CURL_URL": "https://github.com/drevops/drevops/releases/download/1.18.0/db_d10.demo.sql",
+                "DREVOPS_DB_DOWNLOAD_CURL_URL": "https://github.com/drevops/scaffold/releases/download/1.18.0/db_d10.demo.sql",
                 "DREVOPS_DB_DOWNLOAD_ENVIRONMENT": "prod",
                 "DREVOPS_DB_DOWNLOAD_FTP_FILE": "db.sql",
                 "DREVOPS_DB_DOWNLOAD_FTP_HOST": "",
@@ -262,7 +262,7 @@
                 "DREVOPS_DB_DIR": "./.data",
                 "DREVOPS_DB_DOCKER_IMAGE": "myorg/my_db_image",
                 "DREVOPS_DB_DOWNLOAD_ACQUIA_DB_NAME": "your_site",
-                "DREVOPS_DB_DOWNLOAD_CURL_URL": "https://github.com/drevops/drevops/releases/download/1.18.0/db_d10.demo.sql",
+                "DREVOPS_DB_DOWNLOAD_CURL_URL": "https://github.com/drevops/scaffold/releases/download/1.18.0/db_d10.demo.sql",
                 "DREVOPS_DB_DOWNLOAD_ENVIRONMENT": "prod",
                 "DREVOPS_DB_DOWNLOAD_FTP_FILE": "db.sql",
                 "DREVOPS_DB_DOWNLOAD_FTP_HOST": "",
@@ -343,7 +343,7 @@
                 "DREVOPS_DB_DIR": "./.data",
                 "DREVOPS_DB_DOCKER_IMAGE": "myorg/my_db_image",
                 "DREVOPS_DB_DOWNLOAD_ACQUIA_DB_NAME": "your_site",
-                "DREVOPS_DB_DOWNLOAD_CURL_URL": "https://github.com/drevops/drevops/releases/download/1.18.0/db_d10.demo.sql",
+                "DREVOPS_DB_DOWNLOAD_CURL_URL": "https://github.com/drevops/scaffold/releases/download/1.18.0/db_d10.demo.sql",
                 "DREVOPS_DB_DOWNLOAD_ENVIRONMENT": "prod",
                 "DREVOPS_DB_DOWNLOAD_FTP_FILE": "db.sql",
                 "DREVOPS_DB_DOWNLOAD_FTP_HOST": "",
@@ -434,7 +434,7 @@
                 "DREVOPS_DB_DIR": "./.data",
                 "DREVOPS_DB_DOCKER_IMAGE": "myorg/my_db_image",
                 "DREVOPS_DB_DOWNLOAD_ACQUIA_DB_NAME": "your_site",
-                "DREVOPS_DB_DOWNLOAD_CURL_URL": "https://github.com/drevops/drevops/releases/download/1.18.0/db_d10.demo.sql",
+                "DREVOPS_DB_DOWNLOAD_CURL_URL": "https://github.com/drevops/scaffold/releases/download/1.18.0/db_d10.demo.sql",
                 "DREVOPS_DB_DOWNLOAD_ENVIRONMENT": "prod",
                 "DREVOPS_DB_DOWNLOAD_FTP_FILE": "db.sql",
                 "DREVOPS_DB_DOWNLOAD_FTP_HOST": "",
@@ -535,7 +535,7 @@
                 "DREVOPS_DB_DIR": "./.data",
                 "DREVOPS_DB_DOCKER_IMAGE": "myorg/my_db_image",
                 "DREVOPS_DB_DOWNLOAD_ACQUIA_DB_NAME": "your_site",
-                "DREVOPS_DB_DOWNLOAD_CURL_URL": "https://github.com/drevops/drevops/releases/download/1.18.0/db_d10.demo.sql",
+                "DREVOPS_DB_DOWNLOAD_CURL_URL": "https://github.com/drevops/scaffold/releases/download/1.18.0/db_d10.demo.sql",
                 "DREVOPS_DB_DOWNLOAD_ENVIRONMENT": "prod",
                 "DREVOPS_DB_DOWNLOAD_FTP_FILE": "db.sql",
                 "DREVOPS_DB_DOWNLOAD_FTP_HOST": "",
diff --git a/.drevops/tests/bats/install.initial.bats b/.drevops/tests/bats/install.initial.bats
index 1d816be9c..828259a7d 100644
--- a/.drevops/tests/bats/install.initial.bats
+++ b/.drevops/tests/bats/install.initial.bats
@@ -205,7 +205,7 @@ load _helper.bash
   run_install_quiet
 
   # Assert that DrevOps version was replaced.
-  assert_file_contains "README.md" "https://github.com/drevops/drevops/tree/1.2.3"
+  assert_file_contains "README.md" "https://github.com/drevops/scaffold/tree/1.2.3"
   assert_file_contains "README.md" "badge/DrevOps-1.2.3-blue.svg"
 }
 
diff --git a/.drevops/tests/bats/workflow.utilities.bats b/.drevops/tests/bats/workflow.utilities.bats
index 5ad45ad46..ece7db8e0 100644
--- a/.drevops/tests/bats/workflow.utilities.bats
+++ b/.drevops/tests/bats/workflow.utilities.bats
@@ -66,12 +66,12 @@ load _helper.workflow.bash
 
   export GITHUB_TOKEN="${TEST_GITHUB_TOKEN}"
 
-  # Use "drevops/drevops-destination" as an example GitHub project.
-  run ahoy github-labels drevops/drevops-destination
+  # Use "drevops/scaffold-destination" as an example GitHub project.
+  run ahoy github-labels drevops/scaffold-destination
   assert_success
   assert_output_not_contains "ERROR"
 
-  run curl https://github.com/drevops/drevops-destination/labels
+  run curl https://github.com/drevops/scaffold-destination/labels
 
   assert_output_contains ">AUTOMERGE<"
   assert_output_contains "Pull request has been approved and set to automerge"
diff --git a/.drevops/tests/composer.json b/.drevops/tests/composer.json
index 1c6ecfa76..e41230703 100644
--- a/.drevops/tests/composer.json
+++ b/.drevops/tests/composer.json
@@ -1,5 +1,5 @@
 {
-    "name": "drevops/drevops-tests",
+    "name": "drevops/scaffold-tests",
     "description": "Tests for DrevOps",
     "type": "project",
     "authors": [
diff --git a/.drevops/tests/test.workflow.sh b/.drevops/tests/test.workflow.sh
index ae8268cdd..3200b9c4f 100755
--- a/.drevops/tests/test.workflow.sh
+++ b/.drevops/tests/test.workflow.sh
@@ -52,7 +52,7 @@ case ${index} in
   2)
     bats "${TEST_DIR}"/bats/workflow.utilities.bats
     # Disabled due to intermittent failures.
-    # @see https://github.com/drevops/drevops/issues/893
+    # @see https://github.com/drevops/scaffold/issues/893
     # bats "${TEST_DIR}"/bats/workflow.storage.image_cached.bats
     bats "${TEST_DIR}"/bats/workflow.storage.image.bats
     ;;
@@ -62,7 +62,7 @@ case ${index} in
     bats "${TEST_DIR}"/bats/workflow.install.bats
     bats "${TEST_DIR}"/bats/workflow.storage.image.bats
     # Disabled due to intermittent failures.
-    # @see https://github.com/drevops/drevops/issues/893
+    # @see https://github.com/drevops/scaffold/issues/893
     # bats "${TEST_DIR}"/bats/workflow.storage.image_cached.bats
     bats "${TEST_DIR}"/bats/workflow.storage.curl.bats
     bats "${TEST_DIR}"/bats/workflow.utilities.bats
diff --git a/.env b/.env
index 51f5f39a1..7d9a85ad2 100644
--- a/.env
+++ b/.env
@@ -238,7 +238,7 @@ DREVOPS_NOTIFY_EMAIL_RECIPIENTS="webmaster@your-site-url.example"
 #;< DREVOPS_DB_DOWNLOAD_SOURCE_CURL
 # URL of the demo database used for demonstration with CURL database
 # dump as a type of file source.
-DREVOPS_DB_DOWNLOAD_CURL_URL=https://github.com/drevops/drevops/releases/download/1.18.0/db_d10.demo.sql
+DREVOPS_DB_DOWNLOAD_CURL_URL=https://github.com/drevops/scaffold/releases/download/1.18.0/db_d10.demo.sql
 #;> DREVOPS_DB_DOWNLOAD_SOURCE_CURL
 
 #;< DREVOPS_DB_DOCKER_IMAGE
diff --git a/.github/workflows/drevops-publish-docs.yml b/.github/workflows/drevops-publish-docs.yml
index 98ea87e9c..515a14d5d 100644
--- a/.github/workflows/drevops-publish-docs.yml
+++ b/.github/workflows/drevops-publish-docs.yml
@@ -48,10 +48,10 @@ jobs:
       - name: Publish docs
         run: |
           cd .drevops/docs
-          export DOCS_PUBLISH_REMOTE_URL=git@github.com:drevops/drevops_docs.git
+          export DOCS_PUBLISH_REMOTE_URL=git@github.com:drevops/docs.git
           export DOCS_PUBLISH_SRC_TAG=${{ github.ref_type == 'tag' && github.ref_name || '' }}
           export DOCS_PUBLISH_SRC_BRANCH=${{ github.ref_type == 'branch' && github.ref_name || '' }}
           export DOCS_PUBLISH_CANARY_BRANCH="develop"
-          export DOCS_PUBLISH_COMMIT_MESSAGE="Automatically pushed from drevops/drevops"
+          export DOCS_PUBLISH_COMMIT_MESSAGE="Automatically pushed from drevops/scaffold"
           export DOCS_PUBLISH_GIT_EMAIL="deployer@drevops.com"
           ./.utils/publish.sh
diff --git a/README.dist.md b/README.dist.md
index 88ca09b4c..17b928e72 100644
--- a/README.dist.md
+++ b/README.dist.md
@@ -13,7 +13,7 @@ Drupal 10 implementation of YOURSITE for YOURORG
 
 [//]: # (DO NOT REMOVE THE BADGE BELOW. IT IS USED BY DREVOPS TO TRACK INTEGRATION)
 
-[![DrevOps](https://img.shields.io/badge/DrevOps-DREVOPS_VERSION_URLENCODED-blue.svg)](https://github.com/drevops/drevops/tree/DREVOPS_VERSION)
+[![DrevOps](https://img.shields.io/badge/DrevOps-DREVOPS_VERSION_URLENCODED-blue.svg)](https://github.com/drevops/scaffold/tree/DREVOPS_VERSION)
 
 ## Onboarding to DrevOps
 Use [Onboarding checklist](docs/onboarding.md) to track the project onboarding
diff --git a/README.md b/README.md
index 78a033281..4824c1126 100644
--- a/README.md
+++ b/README.md
@@ -10,12 +10,12 @@
 
 <div align="center">
 
-[![Test](https://github.com/drevops/drevops/actions/workflows/drevops-test-common.yml/badge.svg)](https://github.com/drevops/drevops/actions/workflows/drevops-test-common.yml)
-[![Test docs](https://github.com/drevops/drevops/actions/workflows/drevops-test-docs.yml/badge.svg)](https://github.com/drevops/drevops/actions/workflows/drevops-test-docs.yml)
-[![CircleCI](https://circleci.com/gh/drevops/drevops.svg?style=shield)](https://circleci.com/gh/drevops/drevops)
-[![codecov](https://codecov.io/gh/drevops/drevops/graph/badge.svg?token=YDTAEWWT5H)](https://codecov.io/gh/drevops/drevops)
-![GitHub release](https://img.shields.io/github/v/release/drevops/drevops?logo=github)
-![LICENSE](https://img.shields.io/github/license/drevops/drevops)
+[![Test](https://github.com/drevops/scaffold/actions/workflows/drevops-test-common.yml/badge.svg)](https://github.com/drevops/scaffold/actions/workflows/drevops-test-common.yml)
+[![Test docs](https://github.com/drevops/scaffold/actions/workflows/drevops-test-docs.yml/badge.svg)](https://github.com/drevops/scaffold/actions/workflows/drevops-test-docs.yml)
+[![CircleCI](https://circleci.com/gh/drevops/scaffold.svg?style=shield)](https://circleci.com/gh/drevops/scaffold)
+[![codecov](https://codecov.io/gh/drevops/scaffold/graph/badge.svg?token=YDTAEWWT5H)](https://codecov.io/gh/drevops/scaffold)
+![GitHub release](https://img.shields.io/github/v/release/drevops/scaffold?logo=github)
+![LICENSE](https://img.shields.io/github/license/drevops/scaffold)
 
 </div>
 
@@ -50,7 +50,7 @@ https://docs.drevops.com
 ## Features
 
 <div align="center">
-  <img  alt="diagram-shortest" src="https://github.com/drevops/drevops/assets/378794/68e7553b-6c29-437a-8a30-45e9d746180a">
+  <img  alt="diagram-shortest" src="https://github.com/drevops/scaffold/assets/378794/68e7553b-6c29-437a-8a30-45e9d746180a">
 </div>
 
 The following list includes ✅ completed and 🚧 upcoming features.
diff --git a/phpunit.xml b/phpunit.xml
index 9da25f416..806cd4753 100644
--- a/phpunit.xml
+++ b/phpunit.xml
@@ -76,7 +76,7 @@
         </testsuite>
 
         <!-- Not implemented. -->
-        <!-- See https://github.com/drevops/drevops/issues/820 -->
+        <!-- See https://github.com/drevops/scaffold/issues/820 -->
         <!--
         <testsuite name="functional-javascript">
           <file>./tests/TestSuites/FunctionalJavascriptTestSuite.php</file>
diff --git a/web/modules/custom/ys_core/tests/src/Functional/ExampleTest.php b/web/modules/custom/ys_core/tests/src/Functional/ExampleTest.php
index 6f3f5672f..99d836e69 100644
--- a/web/modules/custom/ys_core/tests/src/Functional/ExampleTest.php
+++ b/web/modules/custom/ys_core/tests/src/Functional/ExampleTest.php
@@ -21,7 +21,7 @@ class ExampleTest extends YsCoreFunctionalTestBase {
   protected function setUp(): void {
     parent::setUp();
     // DrevOps does not support Functional tests due to permission issues.
-    // Override setup until @see https://github.com/drevops/drevops/issues/820
+    // Override setup until @see https://github.com/drevops/scaffold/issues/820
     // resolved.
     // This test is left here to make sure that all DrevOps tooling works as
     // expected.
@@ -35,7 +35,7 @@ protected function setUp(): void {
   public function testAddition(): void {
     $this->assertEquals(2, 1 + 1);
     // DrevOps does not support Functional tests due to permission issues.
-    // @see https://github.com/drevops/drevops/issues/820
+    // @see https://github.com/drevops/scaffold/issues/820
     $this->addToAssertionCount(1);
   }
 
@@ -47,7 +47,7 @@ public function testAddition(): void {
   public function testSubtraction(): void {
     $this->assertEquals(1, 2 - 1);
     // DrevOps does not support Functional tests due to permission issues.
-    // @see https://github.com/drevops/drevops/issues/820
+    // @see https://github.com/drevops/scaffold/issues/820
     $this->addToAssertionCount(1);
   }
 
diff --git a/web/themes/custom/your_site_theme/tests/src/Functional/ExampleTest.php b/web/themes/custom/your_site_theme/tests/src/Functional/ExampleTest.php
index f3d7d5ef3..937a95cf2 100644
--- a/web/themes/custom/your_site_theme/tests/src/Functional/ExampleTest.php
+++ b/web/themes/custom/your_site_theme/tests/src/Functional/ExampleTest.php
@@ -21,7 +21,7 @@ class ExampleTest extends YourSiteThemeFunctionalTestBase {
   protected function setUp(): void {
     parent::setUp();
     // DrevOps does not support Functional tests due to permission issues.
-    // Override setup until @see https://github.com/drevops/drevops/issues/820
+    // Override setup until @see https://github.com/drevops/scaffold/issues/820
     // resolved.
     // This test is left here to make sure that all DrevOps tooling works as
     // expected.
@@ -35,7 +35,7 @@ protected function setUp(): void {
   public function testAddition(): void {
     $this->assertEquals(2, 1 + 1);
     // DrevOps does not support Functional tests due to permission issues.
-    // @see https://github.com/drevops/drevops/issues/820
+    // @see https://github.com/drevops/scaffold/issues/820
     $this->addToAssertionCount(1);
   }
 
@@ -47,7 +47,7 @@ public function testAddition(): void {
   public function testSubtraction(): void {
     $this->assertEquals(1, 2 - 1);
     // DrevOps does not support Functional tests due to permission issues.
-    // @see https://github.com/drevops/drevops/issues/820
+    // @see https://github.com/drevops/scaffold/issues/820
     $this->addToAssertionCount(1);
   }