Initial website commit

This commit is contained in:
2026-03-29 21:08:06 +03:00
commit 021d53fe13
2 changed files with 31 additions and 0 deletions

12
.woodpecker.yml Normal file
View File

@@ -0,0 +1,12 @@
when:
branch: main
event: push
steps:
deploy:
image: alpine
commands:
- echo "Deploying to /webroot..."
- apk add --no-cache rsync
- rsync -av --delete --exclude='.git' --exclude='.woodpecker.yml' ./ /webroot/
- echo "Deploy complete"