19 lines
467 B
Bash
Executable File
19 lines
467 B
Bash
Executable File
#!/bin/bash
|
|
# [DEF:run_clean_tui:Script]
|
|
# Helper script to launch the Enterprise Clean Release TUI
|
|
|
|
set -e
|
|
|
|
# Get the directory where the script is located
|
|
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
cd "$SCRIPT_DIR"
|
|
|
|
echo "Starting Enterprise Clean Release Validator..."
|
|
|
|
# Set up environment
|
|
export PYTHONPATH="$SCRIPT_DIR/backend"
|
|
export TERM="xterm-256color"
|
|
|
|
# Run the TUI
|
|
./backend/.venv/bin/python3 -m backend.src.scripts.clean_release_tui
|