Add logsDir setting and more
[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     "logsDir": "directory to store logs (eg. syncthing output)",
55     "syncthing": {
56         "binDir": "syncthing binaries directory (use xds-agent executable dir when not set)",
57         "home": "syncthing home directory (usually .../syncthing-config)",
58         "gui-address": "syncthing gui url (default http://localhost:8384)",
59         "gui-apikey": "syncthing api-key to use (default auto-generated)"
60     }
61 }
62 ```
63
64 >**NOTE:** environment variables are supported by using `${MY_VAR}` syntax.
65
66 ## Start-up
67
68 ```bash
69 ./bin/xds-agent.sh
70
71 # OR if you have install agent
72
73 /usr/local/bin/xds-agent.sh
74 ```
75
76 >**NOTE** you can define some environment variables to setup for example
77 config file `XDS_CONFIGFILE` or change logs level `LOG_LEVEL`.