Commit 8e88450
Changed files (1)
README.md
@@ -6,8 +6,8 @@ them to the client.
## Starting the Application
-Compile the server with `go install questioner.go question.go structures.go` and run it by
-`$GOBIN/questioner -f /path/to/config/file`. The default configuration for the server is
+Compile the server with `go install` (from the same directory) and run it by
+`$GOBIN/questioner -f /path/to/config/file server`. The default configuration for the server is
```
LISTEN_ADDRESS = "127.0.0.1"
@@ -18,8 +18,8 @@ PRIVATE_KEY = "~/.ssh/question.priv"
QUESTIONS = "/path/to/questions"
```
-Compile the client with `go install client.go structures.go command.go` and run it by
-`$GOBIN/client --file /path/to/config/file`. The default configuration for the client is
+Compile the client with `go install` (from the same directory) and run it by
+`$GOBIN/questioner --file /path/to/config/file [client]`. The default configuration for the client is
```
SERVER = "127.0.0.1"