Version 0.0.1 #2

Merged
dguiducci merged 42 commits from main into release 2026-07-22 14:44:42 +01:00
4 changed files with 4 additions and 4 deletions
Showing only changes of commit 54949e2ca9 - Show all commits
+1 -1
View File
@@ -258,7 +258,7 @@ REQUIREMENTS="${INSTALL_DIR}/requirements.txt"
if [ ! -f "$VENV_DIR/bin/python3" ]; then if [ ! -f "$VENV_DIR/bin/python3" ]; then
if command -v uv >/dev/null 2>&1; then if command -v uv >/dev/null 2>&1; then
uv venv "$VENV_DIR" && uv pip install -r "$REQUIREMENTS" \ uv venv --seed "$VENV_DIR" && uv pip install -r "$REQUIREMENTS" \
&& info "✔ Python venv ready (uv)" \ && info "✔ Python venv ready (uv)" \
|| warn "Python venv setup failed — Python MCP servers will be unavailable." || warn "Python venv setup failed — Python MCP servers will be unavailable."
elif command -v python3 >/dev/null 2>&1; then elif command -v python3 >/dev/null 2>&1; then
+1 -1
View File
@@ -263,7 +263,7 @@ REQUIREMENTS="${INSTALL_DIR}/requirements.txt"
if [ ! -f "$VENV_DIR/bin/python3" ]; then if [ ! -f "$VENV_DIR/bin/python3" ]; then
if command -v uv >/dev/null 2>&1; then if command -v uv >/dev/null 2>&1; then
uv venv "$VENV_DIR" && uv pip install -r "$REQUIREMENTS" \ uv venv --seed "$VENV_DIR" && uv pip install -r "$REQUIREMENTS" \
&& info "✔ Python venv ready (uv)" \ && info "✔ Python venv ready (uv)" \
|| warn "Python venv setup failed — Python MCP servers will be unavailable." || warn "Python venv setup failed — Python MCP servers will be unavailable."
elif command -v python3 >/dev/null 2>&1; then elif command -v python3 >/dev/null 2>&1; then
+1 -1
View File
@@ -14,7 +14,7 @@ REQUIREMENTS="requirements.txt"
if [ ! -f "$VENV_DIR/bin/python3" ] && [ -f "$REQUIREMENTS" ]; then if [ ! -f "$VENV_DIR/bin/python3" ] && [ -f "$REQUIREMENTS" ]; then
if command -v uv >/dev/null 2>&1; then if command -v uv >/dev/null 2>&1; then
echo "[run-docker.sh] Setting up Python venv with uv …" echo "[run-docker.sh] Setting up Python venv with uv …"
uv venv "$VENV_DIR" && uv pip install -r "$REQUIREMENTS" \ uv venv --seed "$VENV_DIR" && uv pip install -r "$REQUIREMENTS" \
&& echo "[run-docker.sh] Python venv ready." \ && echo "[run-docker.sh] Python venv ready." \
|| echo "[run-docker.sh] Warning: Python venv setup failed — Python MCP servers will be unavailable." || echo "[run-docker.sh] Warning: Python venv setup failed — Python MCP servers will be unavailable."
elif command -v python3 >/dev/null 2>&1; then elif command -v python3 >/dev/null 2>&1; then
+1 -1
View File
@@ -53,7 +53,7 @@ REQUIREMENTS="requirements.txt"
if [ ! -f "$VENV_DIR/bin/python3" ]; then if [ ! -f "$VENV_DIR/bin/python3" ]; then
if command -v uv >/dev/null 2>&1; then if command -v uv >/dev/null 2>&1; then
echo "[run.sh] Setting up Python venv with uv …" echo "[run.sh] Setting up Python venv with uv …"
uv venv "$VENV_DIR" && uv pip install -r "$REQUIREMENTS" \ uv venv --seed "$VENV_DIR" && uv pip install -r "$REQUIREMENTS" \
&& echo "[run.sh] Python venv ready." \ && echo "[run.sh] Python venv ready." \
|| echo "[run.sh] Warning: Python venv setup failed — Python MCP servers will be unavailable." || echo "[run.sh] Warning: Python venv setup failed — Python MCP servers will be unavailable."
elif command -v python3 >/dev/null 2>&1; then elif command -v python3 >/dev/null 2>&1; then