changeset 291:9d6ba97a31d2

Moved development infos to separate file.
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Tue, 31 Jul 2018 12:47:09 +0200
parents 4befc5868ea6
children c2334b5d3dd0
files README.md docs/DEVELOPMENT.md
diffstat 2 files changed, 27 insertions(+), 28 deletions(-) [+]
line wrap: on
line diff
--- a/README.md	Tue Jul 31 11:32:50 2018 +0200
+++ b/README.md	Tue Jul 31 12:47:09 2018 +0200
@@ -9,6 +9,8 @@
 
 - To only build the SPA-Client you can use `make client`.
 
+For further details see [docs/DEVELOPMENT](docs/DEVELOPMENT.md),
+
 
 ## Setup Database
 
@@ -41,31 +43,3 @@
 
 - `./cmd/gemma/gemma -h` gives you an overview of more available
   options.
-
-
-# Manual setup
-
-## Backend
-
-In Go.
-
-* Install dependencies
-
-    `sh 3rdpartylibs`
-
-* Build
-
-    Prerequesite: compile server
-    ```
-    cd cmd/gemma/
-    go build
-    cd ../../
-    ```
-
-* Run
-    Run server with  `./cmd/gemma/gemma`
-
-
-## Client
-
-See [client/README](client/README.md).
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/docs/DEVELOPMENT.md	Tue Jul 31 12:47:09 2018 +0200
@@ -0,0 +1,25 @@
+# Development
+
+## Backend
+
+You need a working [Go](https://golang.org/dl) build environment (1.10+).
+
+* Install dependencies
+
+    `sh 3rdpartylibs`
+
+* Build
+
+    Prerequesite: compile server
+    ```
+    cd cmd/gemma/
+    go build
+    cd ../../
+    ```
+
+* Run
+    Run server with  `./cmd/gemma/gemma`
+
+## Client
+
+See [client/README](../client/README.md) for details.