From 41103efb964faabf248010d9f91aeb1db760ae5b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Melan=C3=A7on?= Date: Fri, 19 Jul 2019 10:20:03 -0400 Subject: [PATCH] Update README with getting started instructions --- README.md | 27 +++++++++++++++++++-------- 1 file changed, 19 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 51b4224..4b18c2f 100644 --- a/README.md +++ b/README.md @@ -1,15 +1,26 @@ -This is a composer based installer for the [Drutopia distribution](http://www.drupal.org/project/drutopia). +# GEO.coop README -# Prerequisites +This project is based on Drutopia, which means it is compatible with +existing and future Drutopia features. We will be diverging from +Drutopia for special functionality, however. -1. [Prepare a local server for Drupal](https://www.drupal.org/docs/develop/local-server-setup) -2. [Install Composer](https://getcomposer.org/download/) +## Getting started - -## Installation of Drutopia basic +One time: ``` -composer create-project drutopia/drutopia_template:dev-master --no-interaction DIRECTORY +git clone git@gitlab.com:agaric/sites/geo.git +cd geo ``` -Composer will create a new directory called DIRECTORY (change to whatever presumably lower-case name you would like). Inside you will find the web directory with the entire code base of [Drutopia distribution](http://www.drupal.org/project/drutopia). You should be able to install it like any other Drupal site. +[Install DDEV](https://ddev.readthedocs.io/en/latest/#installation) for +the following steps to work. + +Whenever you want a fresh start: + + +``` +git pull +ddev composer update +ddev . drush -y site:install minimal --existing-config +```