From 906a0a107541ce6f215311cf092ca691043cbbf7 Mon Sep 17 00:00:00 2001 From: Kyle Date: Fri, 22 May 2026 07:19:11 -0400 Subject: [PATCH] feat: add start.sh for macOS/Linux Co-Authored-By: Claude Sonnet 4.6 --- start.sh | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 start.sh diff --git a/start.sh b/start.sh new file mode 100644 index 0000000..c7f7f8d --- /dev/null +++ b/start.sh @@ -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