feat: add start.sh for macOS/Linux

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-22 07:19:11 -04:00
parent 82d8570767
commit 906a0a1075
+13
View File
@@ -0,0 +1,13 @@
#!/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