-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathactivate_dev.sh
More file actions
executable file
·22 lines (18 loc) · 727 Bytes
/
activate_dev.sh
File metadata and controls
executable file
·22 lines (18 loc) · 727 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/bash
# StreamWatch Development Environment Activation Script
echo "Setting up StreamWatch development environment with uv..."
# Change to the project directory if not already there
cd "$(dirname "$0")"
# Sync dependencies with uv
echo "📦 Syncing dependencies..."
uv sync
echo "✅ Dependencies synchronized!"
echo "✅ StreamWatch CLI is ready for development"
echo ""
echo "Available commands:"
echo " uv run streamwatch - Run the StreamWatch CLI"
echo " uv run streamlink --version - Check streamlink version"
echo " uv list - Show installed packages"
echo " uv run python -m streamwatch.main - Run module directly"
echo ""
echo "To run commands in the uv environment, use: uv run <command>"