initial commit

This commit is contained in:
isUnknown 2024-07-24 09:43:31 +02:00
commit 880cae624a
906 changed files with 196528 additions and 0 deletions

20
.gitlab-ci.yml Normal file
View file

@ -0,0 +1,20 @@
stages:
- build and deploy
build and deploy:
stage: build and deploy
only:
- main
script:
- apt-get update -qq && apt-get install -y -qq lftp
- lftp -c "set ftp:ssl-allow no; open -u $USERNAME,$PASSWORD $HOST;
mirror --reverse --verbose --ignore-time --parallel=10
-x local/
assets assets;
mirror --reverse --verbose --ignore-time --parallel=10
-x accounts/
-x cache/
-x sessions/
-x header.php
site site;
quit"