diff docs/DEVELOPMENT.md @ 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
children b195bc79e3e8
line wrap: on
line diff
--- /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.