Files
kubejs-utils/.envrc

10 lines
183 B
Bash

#!/bin/sh
if [ -f ".env" ]; then
export $(dotenvx get --format=shell -f .env)
fi
if [ -f ".env.local" ]; then
export $(dotenvx get --format=shell -f .env.local)
fi