aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorAKP <tom@tdpain.net>2022-04-14 18:37:57 +0100
committerAKP <tom@tdpain.net>2022-04-14 18:37:57 +0100
commit2bdd6919711b36c073b0152a2b6ce02d641c683a (patch)
tree9204d4fdf40267b7605bc88ca9e08069f303f057 /README.md
parenta2a72120fc8e11683895d46fe7e5836cb3f19e0e (diff)
parent91f674c369d1c15bc10db28b38b1cfed66dbf074 (diff)
Merge branch 'master' of github.com:codemicro/walrss
Diffstat (limited to 'README.md')
-rw-r--r--README.md11
1 files changed, 8 insertions, 3 deletions
diff --git a/README.md b/README.md
index 80a45bc..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
```
@@ -60,5 +63,7 @@ platform:
## Future features
+* OPML import/export
* Feed categories
-* Administrator users \ No newline at end of file
+* Administrator users
+* Account controls (eg password reset, change password, etc)