diff --git a/.envrc b/.envrc new file mode 100644 index 0000000..8cc0e34 --- /dev/null +++ b/.envrc @@ -0,0 +1,6 @@ +export TF_VAR_artie_api_key=foo + +if [ -f ".envrc-personal" ]; then + echo ".envrc-personal exists, sourcing..." + source .envrc-personal +fi diff --git a/.gitignore b/.gitignore index 396a27a..9619323 100644 --- a/.gitignore +++ b/.gitignore @@ -34,3 +34,6 @@ website/vendor # Keep windows files with windows line endings *.winfile eol=crlf + +# Personal configs +.envrc-personal