Initial commit

This commit is contained in:
2024-08-27 20:33:44 +02:00
commit 1f1832267d
14794 changed files with 1599592 additions and 0 deletions

17
.gitlab-ci.yml Normal file
View File

@@ -0,0 +1,17 @@
stages:
- deploy
deploy:
stage: deploy
before_script:
- 'which ssh-agent || ( apt-get update -y && apt-get install openssh-client -y )'
- eval $(ssh-agent -s)
- echo "$SSH_PRIVATE_KEY" | tr -d '\r' | ssh-add -
- mkdir -p ~/.ssh
- chmod 700 ~/.ssh
- ssh-keyscan 18.196.202.28 >> ~/.ssh/known_hosts
script:
- git remote add dokku dokku@18.196.202.28:saburly
- git push dokku master
only:
- master