Add .env file handling for secrets

This commit is contained in:
Victor Mignot 2022-10-17 00:12:54 -04:00
parent b8c5a21da5
commit 8b873e1fef
No known key found for this signature in database
GPG key ID: FFE4EF056FB5E0D0
2 changed files with 8 additions and 0 deletions

2
.gitignore vendored
View file

@ -1 +1,3 @@
/target
.env

View file

@ -30,6 +30,12 @@
rust-analyzer
rustfmt
];
shellHook = ''
set -a
source .env
set +a
'';
};
}
);