chore(project): update justfile and envrc

This commit is contained in:
2025-12-16 19:35:58 +08:00
parent b15ffafcd4
commit 047d094341
3 changed files with 17 additions and 12 deletions

18
.envrc
View File

@@ -1,9 +1,9 @@
#!/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
#!/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