Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions databricks-builder-app/.python-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3.12
2 changes: 1 addition & 1 deletion databricks-builder-app/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ name = "databricks-builder-app"
version = "0.1.0"
description = "Claude Code MCP Application"
readme = "README.md"
requires-python = ">=3.11"
requires-python = ">=3.11,<3.14"
dependencies = [
"fastapi[standard]>=0.115.8",
"python-dotenv>=1.0.1",
Expand Down
2 changes: 1 addition & 1 deletion databricks-builder-app/scripts/start_dev.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ trap cleanup SIGINT SIGTERM

# Start backend
echo "Starting backend on http://localhost:8000..."
uvicorn server.app:app --reload --port 8000 --reload-dir server &
uv run uvicorn server.app:app --reload --port 8000 --reload-dir server &
BACKEND_PID=$!

# Wait a moment for backend to start
Expand Down