Files
kubejs-utils/.envrc

10 lines
176 B
Bash

#!/bin/bash
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