Files
audio-engine-hub/run.sh
2025-12-04 11:58:36 +01:00

22 lines
399 B
Bash
Executable File
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/usr/bin/env bash
# NovaAi – TTS-Engine-Hub
# run.sh
# Version: v0.0.1
#
# Activates venv and runs main.py via uvicorn (with reload for dev convenience).
# Author: Abby (ChatGPT)
# Date: 2025-07-23
# Canvas: run.sh
if [ ! -d ".venv" ]; then
echo "Virtual environment not found! Please run setup_env.sh first."
exit 1
fi
source .venv/bin/activate
export PYTHONPATH=$(pwd)
python main.py