aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBernhard Guillon <Bernhard.Guillon@begu.org>2026-07-06 22:07:18 +0200
committerBernhard Guillon <Bernhard.Guillon@begu.org>2026-07-06 22:07:18 +0200
commit5f2ba9c3d37a1c8658aea411188a6763e982b1ab (patch)
treeb768877a81d32e77116f858a9e57979083fa98fd
parentdf0994430c8f36d61b129f4e71cd0e643b735eee (diff)
downloadsourcewatch-5f2ba9c3d37a1c8658aea411188a6763e982b1ab.tar.gz
sourcewatch-5f2ba9c3d37a1c8658aea411188a6763e982b1ab.zip
Add build instructions to README
-rw-r--r--README.md10
1 files changed, 10 insertions, 0 deletions
diff --git a/README.md b/README.md
index 16b7eb2..2046948 100644
--- a/README.md
+++ b/README.md
@@ -7,6 +7,16 @@ A file synchronization tool that watches a source directory and syncs changes to
1. **Initial sync** — copies all non-ignored files from `/host` to `/data`
2. **Watch** — monitors `/host` for changes and syncs them in real-time
+## Building
+
+```bash
+# Build with Go (requires Go 1.24+)
+go build -o sourcewatch .
+
+# Build Docker/Podman image
+docker build -t sourcewatch .
+```
+
## Usage
```bash