first commit

This commit is contained in:
2025-12-04 11:58:36 +01:00
commit 21cdc65ade
38 changed files with 8176 additions and 0 deletions

21
run.sh Executable file
View File

@ -0,0 +1,21 @@
#!/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