mirror of
https://github.com/dredx/prole.git
synced 2026-09-23 11:03:59 +00:00
- Refactored installer UI with updated canvas rendering, sidebar navigation, and footer buttons. - Enhanced styling for macOS compatibility and consistent design across controls. - Added Pytest-based unit tests for `screen.py` and `config.py`. - Expanded dependency catalog with new tools like `tshark` and `pyshark`. - Improved error tolerance for background rendering and added placeholders for Kerberos configuration.
12 lines
430 B
Bash
12 lines
430 B
Bash
#!/usr/bin/env bash
|
|
# Prole environment file. Sourced by other scripts in ~/.prole/bin.
|
|
# Customize PATH, KUBECONFIG, contexts, etc.
|
|
|
|
# Ensure common kubectl locations are available
|
|
export PATH="/usr/local/bin:/opt/homebrew/bin:/usr/bin:/bin:$PATH"
|
|
|
|
# Example: point to a specific kubeconfig if needed
|
|
# export KUBECONFIG="$HOME/.kube/config"
|
|
|
|
# You can add any environment variables that your port-forward commands require here.
|