22 lines
399 B
Bash
Executable File
22 lines
399 B
Bash
Executable File
#!/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
|
||
|