mirror of
https://codeberg.org/yuukixyz/taiko-web-db.git
synced 2024-10-22 11:05:43 +02:00
11 lines
524 B
Bash
11 lines
524 B
Bash
#!/bin/bash
|
|
|
|
docker exec -i taiko-mongo mongoexport --db taiko --collection users --out /dev/stdout | sort -n > users.json
|
|
docker exec -i taiko-mongo mongoexport --db taiko --collection songs --out /dev/stdout | sort -n > songs.json
|
|
docker exec -i taiko-mongo mongoexport --db taiko --collection scores --out /dev/stdout | sort -n > scores.json
|
|
|
|
git add *.json
|
|
changed=$(git diff --name-only --cached | paste -s -d " ")
|
|
git commit --author="BOT <bot@example.com>" -m "$changed が更新されました"
|
|
git push origin main
|