Fix doc.
[src/xds/xds-agent.git] / README.md
1 # XDS - X(cross) Development System Agent
2
3 XDS-agent is an agent that should run on your local machine when you use XDS.
4
5 This agent takes care of starting [Syncthing](https://syncthing.net/) tool to
6 synchronize your projects files from your local machine to build server machine
7 or container.
8
9
10 > **SEE ALSO**: [xds-server](https://github.com/iotbzh/xds-server), a web server
11 used to remotely cross build applications.
12
13
14 ## How to build
15
16 ### Dependencies
17
18 - Install and setup [Go](https://golang.org/doc/install) version 1.7 or
19 higher to compile this tool.
20
21
22 ### Building
23
24 Clone this repo into your `$GOPATH/src/github.com/iotbzh` and use delivered Makefile:
25 ```bash
26  mkdir -p $GOPATH/src/github.com/iotbzh
27  cd $GOPATH/src/github.com/iotbzh
28  git clone https://github.com/iotbzh/xds-agent.git
29  cd xds-agent
30  make all
31 ```
32
33 And to install xds-agent in /usr/local/bin:
34 ```bash
35 make install
36 ```
37
38 ## How to run
39
40 ## Configuration
41
42 xds-agent configuration is driven by a JSON config file (`agent-config.json`).
43
44 Here is the logic to determine which `agent-config.json` file will be used:
45 1. from command line option: `--config myConfig.json`
46 2. `$HOME/.xds/agent-config.json` file
47 3. `<current dir>/agent-config.json` file
48 4. `<xds-agent executable dir>/agent-config.json` file
49
50 Supported fields in configuration file are:
51 ```json
52 {
53     "httpPort": "http port of agent REST interface",
54     "syncthing": {
55         "binDir": "syncthing binaries directory (use xds-agent executable dir when not set)",
56         "home": "syncthing home directory (usually .../syncthing-config)",
57         "gui-address": "syncthing gui url (default http://localhost:8384)"
58     }
59 }
60 ```
61
62 >**NOTE:** environment variables are supported by using `${MY_VAR}` syntax.
63
64 ## Start-up
65
66 ```bash
67 ./bin/xds-agent.sh
68
69 # OR if you have install agent
70
71 /usr/local/bin/xds-agent.sh
72 ```
73
74 >**NOTE** you can define some environment variables to setup for example
75 config file `XDS_CONFIGFILE` or change logs level `LOG_LEVEL`.