docs: improve readme

This commit is contained in:
2025-05-06 13:49:47 +02:00
parent f0fdeabafa
commit b4573635db
2 changed files with 15 additions and 11 deletions

View File

@@ -10,7 +10,7 @@ build:
mkdir -p bin
env GOOS=linux GOARCH=${ARCH} go build -o bin/rcond-${ARCH} ./cmd/rcond/main.go
install:
install: build
sudo mkdir -p /etc/rcond
sudo mkdir -p /var/rcond
sudo cp config/rcond.yaml /etc/rcond/config.yaml
@@ -29,7 +29,7 @@ uninstall:
sudo rm -rf /usr/local/bin/rcond
sudo rm -rf /etc/systemd/system/rcond.service
run:
run: build
bin/rcond-${ARCH} -config config/rcond.yaml
dev: