Initial commit: XDL Twitter/X video downloader

This commit is contained in:
mini
2026-02-18 17:15:12 +08:00
commit 7fdd181728
32 changed files with 1230 additions and 0 deletions

24
.drone.yml Normal file
View File

@@ -0,0 +1,24 @@
kind: pipeline
type: ssh
name: deploy
server:
host: 217.216.32.230
user: root
ssh_key:
from_secret: ssh_key
trigger:
branch:
- main
event:
- push
steps:
- name: deploy
commands:
- cd /home/xdl/xdl
- git pull origin main
- docker compose build --no-cache
- docker compose up -d
- echo "✅ XDL deployed successfully"