Commit direnv config file and move secrets to .env.local

This commit is contained in:
Jeremy Dormitzer 2020-12-04 14:16:39 -05:00
parent 88e5dde425
commit 459f8936c5
2 changed files with 9 additions and 1 deletions

8
.envrc Normal file
View File

@ -0,0 +1,8 @@
PATH_add bin
if [ -f ".env.local" ]; then
echo "sourcing .env.local"
set -a
source ".env.local"
set +a
fi

2
.gitignore vendored
View File

@ -1,4 +1,4 @@
/.envrc
/.env.local
/backend-config.tf
*/**/.terraform
*.tfstate*