This commit is contained in:
Artur Gurgul 2025-04-24 20:53:37 +02:00 committed by Artur Gurgul
commit a0a338067b
16 changed files with 898 additions and 0 deletions

8
Makefile Normal file
View file

@ -0,0 +1,8 @@
# /usr/share/webdav/templates
all:
go build -o webdav ./src
mkdir -p /srv/bin
mv webdav /srv/bin/
cp webdav.service /etc/systemd/system/
systemctl enable webdav
systemctl start webdav