Update doc: add current dir in config.json discovery logic.
[src/xds/xds-server.git] / README.md
1 # XDS - X(cross) Development System Server
2
3 XDS-server is a web server that allows user to remotely cross build applications.
4
5 The first goal is to provide a multi-platform cross development tool with
6 near-zero installation.
7 The second goals is to keep application sources locally (on user's machine) to
8 make it compatible with existing IT policies (e.g. corporate backup or SCM).
9
10 This powerful webserver (written in [Go](https://golang.org)) exposes a REST
11 interface over HTTP and also provides a Web dashboard to configure projects and execute only _(for now)_ basics commands.
12
13 XDS-server also uses [Syncthing](https://syncthing.net/) tool to synchronize
14 projects files from user machine to build server machine or container.
15
16 > **NOTE**: For now, only Syncthing sharing method is supported to synchronize
17 projects files.
18
19 > **SEE ALSO**: [xds-make](https://github.com/iotbzh/xds-make), a wrapper on `make`
20 command that allows you to build your application from command-line through
21 xds-server.
22
23
24 ## How to build
25
26 ### Dependencies
27
28 - Install and setup [Go](https://golang.org/doc/install) version 1.7 or
29 higher to compile this tool.
30 - Install [npm](https://www.npmjs.com/) : `sudo apt install npm`
31 - Install [gulp](http://gulpjs.com/) : `sudo npm install -g gulp-cli`
32
33
34 ### Building
35
36 Clone this repo into your `$GOPATH/src/github.com/iotbzh` and use delivered Makefile:
37 ```bash
38  mkdir -p $GOPATH/src/github.com/iotbzh
39  cd $GOPATH/src/github.com/iotbzh
40  git clone https://github.com/iotbzh/xds-server.git
41  cd xds-server
42  make all
43 ```
44
45 And to install xds-server in /usr/local/bin:
46 ```bash
47 make install
48 ```
49
50 ## How to run
51
52 ## Configuration
53
54 xds-server configuration is driven by a JSON config file (`config.json`).
55
56 Here is the logic to determine which `config.json` file will be used:
57 1. from command line option: `--config myConfig.json`
58 2. `$HOME/.xds/config.json` file
59 3. `<current dir>/config.json` file
60 4. `<xds-server executable dir>/config.json` file
61
62 Supported fields in configuration file are:
63 ```json
64 {
65     "webAppDir": "location of client dashboard (default: webapp/dist)",
66     "shareRootDir": "root directory where projects will be copied",
67     "syncthing": {
68         "home": "syncthing home directory (usually .../syncthing-config)",
69         "gui-address": "syncthing gui url (default http://localhost:8384)"
70     }
71 }
72 ```
73
74 >**NOTE:** environment variables are supported by using `${MY_VAR}` syntax.
75
76 ## Start-up
77
78 Use `xds-start-server.sh` script to start all requested tools
79 ```bash
80 /usr/local/bin/xds-start-server.sh
81 ```
82
83 >**NOTE** you can define some environment variables to setup for example
84 config file `XDS_CONFFILE` or change logs directory `LOGDIR`.
85 See head section of `xds-start-server.sh` file to see all configurable variables.
86
87
88 ## Debugging
89
90 ### XDS server architecture
91
92 The server part is written in *Go* and web app / dashboard (client part) in
93 *Angular2*.
94
95 ```
96 |
97 +-- bin/                where xds-server binary file will be built
98 |
99 +-- config.json.in      example of config.json file
100 |
101 +-- glide.yaml          Go package dependency file
102 |
103 +-- lib/                sources of server part (Go)
104 |
105 +-- main.go             main entry point of of Web server (Go)
106 |
107 +-- Makefile            makefile including
108 |
109 +-- README.md           this readme
110 |
111 +-- scripts/            hold various scripts used for installation or startup
112 |
113 +-- tools/              temporary directory to hold development tools (like glide)
114 |
115 +-- vendor/             temporary directory to hold Go dependencies packages
116 |
117 +-- webapp/             source client dashboard (Angular2 app)
118 ```
119
120 Visual Studio Code launcher settings can be found into `.vscode/launch.json`.
121
122
123 ## TODO:
124 - replace makefile by build.go to make Windows build support easier
125 - add more tests
126 - add more documentation