Kirana_AI / scripts /_env.sh
Zappandy's picture
Deploy to HF Space
dae60e5
Raw
History Blame Contribute Delete
187 Bytes
#!/usr/bin/env bash
# Shared env loader for local scripts.
# Source this file from other scripts; do not execute directly.
if [[ -f ".env" ]]; then
set -a
source ".env"
set +a
fi