# HG changeset patch # User Sascha L. Teichmann # Date 1533034029 -7200 # Node ID 9d6ba97a31d22c8350cc557d0632188d505f1c5f # Parent 4befc5868ea617e20cb7afce6ae5f32b0376b10e Moved development infos to separate file. diff -r 4befc5868ea6 -r 9d6ba97a31d2 README.md --- 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). diff -r 4befc5868ea6 -r 9d6ba97a31d2 docs/DEVELOPMENT.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.