From ddb913842b7976bcefd4a26fb0d3b516a989b6bb Mon Sep 17 00:00:00 2001
From: jurgenhaas <juergen@paragon-es.de>
Date: Tue, 12 Jan 2021 14:40:54 +0100
Subject: [PATCH] Move readme to docs

---
 README.md     | 53 ---------------------------------------------------
 composer.json |  3 ++-
 2 files changed, 2 insertions(+), 54 deletions(-)
 delete mode 100644 README.md

diff --git a/README.md b/README.md
deleted file mode 100644
index 819be9a..0000000
--- a/README.md
+++ /dev/null
@@ -1,53 +0,0 @@
-# Usage
-
-## Preparation
-
-- [Install composer](https://getcomposer.org): `sudo wget https://getcomposer.org/composer.phar --output-document=/usr/local/bin/composer && sudo chmod +x /usr/local/bin/composer`
-- Disable XDebug for CLI - optional: `sudo phpdismod -s cli xdebug`
-- [Install Prestissimo](https://github.com/hirak/prestissimo) - optional: `sudo composer global require "hirak/prestissimo:^0.3"`
-
-## Create new project for local development
-
-```bash
-composer create-project lakedrops/d9-project [DIRNAME] --no-interaction
-cd [DIRNAME]
-```
-
-This will build the full structure and create a git repository which you can then use during the full live-cycle of that project.
-
-To install a new site with the included default configuration, use `drush site-install --existing-config` and you get a jump-start from that.
-
-## Deploy project to upstream stages
-
-For deployment, both initially and for later updates, follow this:
-
-```
-mkdir /PATH/TO/ROOT
-cd /PATH/TO/ROOT
-git clone YOUR-GIT-REPOSITORY .
-composer install
-```
-
-## Adding new and updating existing components
-
-Edit the composer.json file accodring to your requirements and then run `composer update`.
-
-## Adding JS packages
-
-### CKEditor Codesnippet
-
-```bash
-composer config repositories.codesnippet '{"type": "package","package": {"name": "ckeditorplugin/codesnippet","type": "drupal-library","version": "master","dist": {"type": "zip","url": "https://download.ckeditor.com/codesnippet/releases/codesnippet_4.7.3.zip","reference": "master"}}}'
-composer require ckeditorplugin/codesnippet:master drupal/codesnippet
-```
-
-### Chosen
-
-```bash
-composer config repositories.codesnippet '{"type": "package","package": {"name": "harvesthq/chosen","version": "1.8.2","type": "drupal-library","dist": {"url": "https://github.com/harvesthq/chosen/releases/download/v1.8.2/chosen_v1.8.2.zip","type": "zip"}}}'
-composer require harvesthq/chosen
-```
-
-# Links
-
-[Using Composer to install Drupal packages through Drupal.org](https://www.drupal.org/node/2718229)
diff --git a/composer.json b/composer.json
index ede7d02..effeb7c 100644
--- a/composer.json
+++ b/composer.json
@@ -26,7 +26,8 @@
     ],
     "support": {
         "issues": "https://gitlab.lakedrops.com/composer/project/drupal-9/issues",
-        "source": "https://gitlab.lakedrops.com/composer/project/drupal-9/tree/master"
+        "source": "https://gitlab.lakedrops.com/composer/project/drupal-9/tree/master",
+        "docs": "https://devops-tools.docs.lakedrops.com/composer/project/d9/"
     },
     "repositories": [
         {
-- 
GitLab