From 33e2c43677fc6d9c9826e8d0cfd4d8edacfa60b8 Mon Sep 17 00:00:00 2001 From: Nicco Kunzmann Date: Sat, 4 Jan 2020 13:05:50 +0100 Subject: [PATCH 1/2] describe the development process --- README.md | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 87df59bbb..8f9c680c4 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,21 @@ **to start** -- needs npm install on top level and inside ui directory +- needs [npm](https://www.npmjs.com/get-npm) install on top level + ``` + npm install + ``` +- inside ui directory + ``` + cd ui + npm install + ``` +- install [gatsby](https://www.gatsbyjs.org/docs/) + ``` + npm install -g gatsby-cli + ``` +- run the development version + ``` + gatsby develop + ``` **don't forget to** - adjust repo in cms' config.yml From 45de636709231a83c1ecfd01cc166bbc92388270 Mon Sep 17 00:00:00 2001 From: Nicco Kunzmann Date: Sat, 4 Jan 2020 13:06:59 +0100 Subject: [PATCH 2/2] add title and purpose --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 8f9c680c4..9f4e16567 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,7 @@ +# biopunk.kitchen + +This is the source code behind https://biopunk.kitchen + **to start** - needs [npm](https://www.npmjs.com/get-npm) install on top level ```