chore: 清理过时的 Python 遗留配置和文档

- .dockerignore 移除 Python 相关忽略规则和废弃的 dist 放行条目
- README 更新密钥生成为 shell 脚本,移除过时的 systemd 部署章节
- deploy.sh 从哈希计算中移除已删除的 entrypoint.sh
This commit is contained in:
fawney19
2026-04-11 13:00:04 +08:00
parent 1d896467dc
commit c95feea286
3 changed files with 7 additions and 45 deletions
+1 -1
View File
@@ -62,7 +62,7 @@ done
calc_code_hash() {
{
cat Dockerfile.app.local 2>/dev/null
cat Cargo.toml Cargo.lock entrypoint.sh 2>/dev/null
cat Cargo.toml Cargo.lock 2>/dev/null
find frontend/src -type f \( -name "*.vue" -o -name "*.ts" -o -name "*.tsx" -o -name "*.js" \) 2>/dev/null | sort | xargs cat 2>/dev/null
find apps -type f \( -name "*.rs" -o -name "Cargo.toml" \) 2>/dev/null | sort | xargs cat 2>/dev/null
find crates -type f \( -name "*.rs" -o -name "*.sql" -o -name "Cargo.toml" \) 2>/dev/null | sort | xargs cat 2>/dev/null