env: .env file for API keys (gitignored), loaded by scripts and resolve_provider; key removed from bashrc
This commit is contained in:
@@ -3,6 +3,14 @@
|
||||
# Usage: scripts/run_bridge.sh [port] (default 8765)
|
||||
# Note: the bridge keeps running until interrupted (Ctrl-C).
|
||||
set -euo pipefail
|
||||
|
||||
# Load API keys from the project .env file (if present)
|
||||
if [ -f .env ]; then
|
||||
set -a
|
||||
# shellcheck disable=SC1091
|
||||
. ./.env
|
||||
set +a
|
||||
fi
|
||||
cd "$(dirname "$0")/.."
|
||||
PORT="${1:-8765}"
|
||||
|
||||
|
||||
@@ -3,6 +3,14 @@
|
||||
# Open http://127.0.0.1:8000 to watch the capsule while you talk to it.
|
||||
# Usage: scripts/run_chat.sh [--model gemma4:e2b]
|
||||
set -euo pipefail
|
||||
|
||||
# Load API keys from the project .env file (if present)
|
||||
if [ -f .env ]; then
|
||||
set -a
|
||||
# shellcheck disable=SC1091
|
||||
. ./.env
|
||||
set +a
|
||||
fi
|
||||
cd "$(dirname "$0")/.."
|
||||
BRIDGE_PID=""
|
||||
LIVE_PID=""
|
||||
|
||||
@@ -5,5 +5,13 @@
|
||||
# scripts/run_demo.sh --agent scripted
|
||||
# scripts/run_demo.sh --agent llm --model gemma4:e2b
|
||||
set -euo pipefail
|
||||
|
||||
# Load API keys from the project .env file (if present)
|
||||
if [ -f .env ]; then
|
||||
set -a
|
||||
# shellcheck disable=SC1091
|
||||
. ./.env
|
||||
set +a
|
||||
fi
|
||||
cd "$(dirname "$0")/.."
|
||||
exec testbed/.venv/bin/python -m testbed.demo "$@"
|
||||
|
||||
@@ -3,6 +3,14 @@
|
||||
# demo while you watch. Open http://127.0.0.1:8000 in a browser.
|
||||
# Usage: scripts/run_live.sh [demo args...] e.g. --agent scripted
|
||||
set -euo pipefail
|
||||
|
||||
# Load API keys from the project .env file (if present)
|
||||
if [ -f .env ]; then
|
||||
set -a
|
||||
# shellcheck disable=SC1091
|
||||
. ./.env
|
||||
set +a
|
||||
fi
|
||||
cd "$(dirname "$0")/.."
|
||||
BRIDGE_PID=""
|
||||
LIVE_PID=""
|
||||
|
||||
Reference in New Issue
Block a user