906a0a1075
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
14 lines
240 B
Bash
14 lines
240 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
echo "Installing dependencies..."
|
|
cd "$(dirname "$0")/backend"
|
|
python3 -m pip install -r requirements.txt --quiet
|
|
|
|
echo
|
|
echo "Starting WireDraw at http://localhost:8000"
|
|
echo "Press Ctrl+C to stop."
|
|
echo
|
|
|
|
python3 run.py
|