initial commit

This commit is contained in:
2025-09-12 21:45:11 +02:00
commit d8e4d77687
6 changed files with 4000 additions and 0 deletions

32
run.sh Executable file
View File

@@ -0,0 +1,32 @@
#!/usr/bin/env bash
set -euo pipefail
# Resolve to repo root (directory of this script)
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
cd "$SCRIPT_DIR"
# Pick a Python executable
if command -v python3 >/dev/null 2>&1; then
PY=python3
else
PY=python
fi
echo "[setup] Creating virtual environment in .venv"
"$PY" -m venv .venv
# Activate venv
echo "[setup] Activating virtual environment"
source .venv/bin/activate
# Upgrade pip (optional but helpful)
python -m pip install --upgrade pip >/dev/null 2>&1 || true
# Install requirements
echo "[deps] Installing requirements from requirements.txt"
python -m pip install -r requirements.txt
# Launch the app
echo "[run] Starting Concept Maker GUI"
exec python concept-maker_gui.py