chore: move workflow/repo/documents/config under assets

This commit is contained in:
tukuaiai
2026-02-27 01:46:51 +08:00
parent 4207c8fbb8
commit dffbb976e7
488 changed files with 203 additions and 196 deletions
+10
View File
@@ -0,0 +1,10 @@
#!/bin/bash
# 构建所有服务
set -e
echo "Building all services..."
for dir in services/*/; do
echo "Building $dir"
# docker build -t "${dir%/}" "$dir"
done
echo "Done!"