changeset 121:9a5bbe9c593c

Split README into client and toplevel.
author Bernhard Reiter <bernhard@intevation.de>
date Wed, 27 Jun 2018 10:50:09 +0200
parents be2631b0ce7e
children da279a0ce127
files README.md client/README.md
diffstat 2 files changed, 25 insertions(+), 15 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/README.md	Wed Jun 27 10:50:09 2018 +0200
@@ -0,0 +1,24 @@
+## Backend
+
+In Go.
+
+* Install dependencies
+
+    `sh 3rdpartylibs`
+
+* Build
+
+    Prerequesite: compile server
+    ```
+    cd cmd/tokenserver/
+    go build
+    cd ../../
+    ```
+
+* Run
+    Run server with  `./cmd/tokenserver/tokenserver`
+
+
+## Client
+
+See [client/README](client/README.md).
--- a/client/README.md	Tue Jun 26 18:29:46 2018 +0200
+++ b/client/README.md	Wed Jun 27 10:50:09 2018 +0200
@@ -2,9 +2,6 @@
 ===
 
 * Install dependencies
-  * GO
-
-    `sh 3rdpartylibs`
 
   * Javascript
 
@@ -20,22 +17,11 @@
 
 * Start Development servers
 
-  * GO
-
-    Prerequesite: compile server
-    ```
-    cd cmd/tokenserver/
-    go build
-    cd ../../
-    ````
-
-    Run server with  `./cmd/tokenserver/tokenserver`
-
   * Javascript
 
     Run webpack-dev-server with `yarn serve`
 
-  * You could run both with
+  * If you also want to start the backend, try
 
     `yarn run:both`