mirror of
https://github.com/dredx/prole.git
synced 2026-09-23 12:03:59 +00:00
Consolidates the GCP cluster configuration TUI (formerly etc/config.py) into knoe/config.py as a __main__ entrypoint, resolving the naming collision with the root-level installer utilities module. Adds config.sh as a thin shell launcher at the project root. Also excludes .claude/ worktree directories from git and IDE indexing. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
8 lines
260 B
Bash
Executable File
8 lines
260 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# config.sh — GCP cluster configuration TUI launcher
|
|
# Wraps: python3 -m knoe.config --mode k8s --provider gcp
|
|
set -euo pipefail
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
cd "$SCRIPT_DIR"
|
|
exec python3 -m knoe.config "$@"
|