迁入项目

This commit is contained in:
2025-04-08 11:38:01 +08:00
parent abb28d83fd
commit 2b349a7b5d
23 changed files with 1426 additions and 2 deletions
+12
View File
@@ -0,0 +1,12 @@
#!/bin/bash
############################################################################
# Generate requirements.txt from requirements.in
############################################################################
echo "Generating requirements.txt"
CURR_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
UV_CUSTOM_COMPILE_COMMAND="./generate_requirements.sh" \
uv pip compile ${CURR_DIR}/requirements.in --no-cache --upgrade -o ${CURR_DIR}/requirements.txt