chore(env): add direnv and justfile for environment management

This commit is contained in:
2025-12-10 19:51:57 +08:00
parent f1c0cb298a
commit b5c6d12674
3 changed files with 16 additions and 0 deletions

9
.envrc Normal file
View File

@@ -0,0 +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