Merge pull request #636 from bugout-dev/scm-source-env

Sourcing env file with nix start and new commit with fix
pull/651/head
Sergei Sumarokov 2022-08-11 21:13:36 +03:00 zatwierdzone przez GitHub
commit 43162ac7d2
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 2 dodań i 1 usunięć

Wyświetl plik

@ -15,7 +15,7 @@ let
(getEnv "MDP_GIT")
(fetchGit {
url = "git@gitlab.com:mixrank/mdp.git";
rev = "57e5d9903235a171c5be76ebb876d66215e2ed7c";
rev = "309e04f3f646847af3b7c084b01cfd72e1db92c8";
})
] ++ scm_repos;
});
@ -23,6 +23,7 @@ in rec {
schematic = scm.shell.overrideAttrs ( oldAttrs : {
shellHook = oldAttrs.shellHook + ''
[ -n "$ENV" -a "$ENV" != "dev" ] && export BUGSNAG=2b987ca13cd93a4931bb746aace204fb
source /home/moonstream/moonstream-secrets/pg.env
'';
});
}