From 547564eac81c1a229cbdee6c8b8f62c34a4a0df4 Mon Sep 17 00:00:00 2001 From: timo Date: Sat, 25 Jul 2026 20:54:45 +0200 Subject: [PATCH] Added start script --- start.sh | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100755 start.sh diff --git a/start.sh b/start.sh new file mode 100755 index 0000000..43e8101 --- /dev/null +++ b/start.sh @@ -0,0 +1,15 @@ +#!/bin/bash + +set -e + +# Change to the directory containing this script +cd "$(dirname "$0")" + +# Activate the virtual environment +source bin/activate + +# Start the FastAPI application +exec uvicorn main:app \ + --host 0.0.0.0 \ + --port 8000 +