From 99a9d36363c952cf4a4be9786562fd2f5ed9e7cb Mon Sep 17 00:00:00 2001 From: akp Date: Thu, 14 Apr 2022 16:14:38 +0100 Subject: Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 80a45bc..cad6ad3 100644 --- a/README.md +++ b/README.md @@ -60,5 +60,6 @@ platform: ## Future features +* OPML import/export * Feed categories -* Administrator users \ No newline at end of file +* Administrator users -- cgit v1.2.3-70-g09d2 From 601cccfc32d3fe980bcf9ac2dff5f13019edb4f0 Mon Sep 17 00:00:00 2001 From: akp Date: Thu, 14 Apr 2022 16:15:07 +0100 Subject: Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index cad6ad3..33fe036 100644 --- a/README.md +++ b/README.md @@ -63,3 +63,4 @@ platform: * OPML import/export * Feed categories * Administrator users +* Account controls (eg password reset, change password, etc) -- cgit v1.2.3-70-g09d2 From 91f674c369d1c15bc10db28b38b1cfed66dbf074 Mon Sep 17 00:00:00 2001 From: akp Date: Thu, 14 Apr 2022 17:01:44 +0100 Subject: Fix setup instructions --- README.md | 7 +++++-- 1 file 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 ``` -- cgit v1.2.3-70-g09d2