aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorakp <tom@tdpain.net>2022-04-14 17:01:44 +0100
committerGitHub <noreply@github.com>2022-04-14 17:01:44 +0100
commit91f674c369d1c15bc10db28b38b1cfed66dbf074 (patch)
tree2fa4a60578c47a73d4abe25d2f4a7cdf79c33ec3
parent601cccfc32d3fe980bcf9ac2dff5f13019edb4f0 (diff)
Fix setup instructions
-rw-r--r--README.md7
1 files changed, 5 insertions, 2 deletions
diff --git a/README.md b/README.md
index 33fe036..3d7ac5d 100644
--- a/README.md
+++ b/README.md
@@ -16,6 +16,8 @@
```bash
docker pull ghcr.io/codemicro/walrss:latest
+mkdir walrss-data
+nano walrss-data/config.yaml # You'll have to fill in the required fields detailed below
docker run -d -v $(pwd)/walrss-data:/run -p 8080:8080 ghcr.io/codemicro/walrss:latest
```
@@ -25,12 +27,13 @@ You must have an up-to-date version of the Go toolchain installed. Check `go.mod
```bash
git clone https://github.com/codemicro/walrss.git; cd walrss
-go build github.com/codemicro/walrss/walrss
+go build -o walrssServer github.com/codemicro/walrss/walrss
```
```bash
mkdir walrss-data
-WALRSS_DIR="./walrss-data" ./walrss
+nano walrss-data/config.yaml # You'll have to fill in the required fields detailed below
+WALRSS_DIR="./walrss-data" ./walrssServer
# now go to http://127.0.0.1:8080
```