Merge branch 'main' into alembic-indexes

pull/1070/head
kompotkot 2024-05-24 16:01:16 +00:00
commit 6695a3b353
3 zmienionych plików z 12 dodań i 2 usunięć

Wyświetl plik

@ -0,0 +1,10 @@
stdargs @ { scm, ... }:
scm.schema {
guid = "S0K5PY7LHKC4TFXZ";
name = "blockchain";
upgrade_sql = ./upgrade.sql;
dependencies = [
];
}

Wyświetl plik

@ -4,7 +4,7 @@ let
(getEnv "SCM_GIT")
(fetchGit {
url = "git@gitlab.com:deltaex/schematic.git";
rev = "deccf9c3af9d381ebcf43b4684f2a9fc12ca2df7";
rev = "ba5d7b40255e5da9a74e666dd88e309dae40fbd2";
})
];
scm_repo = head (filter (x: x != "") scm_repos);
@ -23,7 +23,7 @@ in rec {
schematic = scm.shell.overrideAttrs ( oldAttrs : {
shellHook = oldAttrs.shellHook + ''
[ -n "$ENV" -a "$ENV" != "dev" ]
source /home/moonstream/moonstream-db-v3-secrets/pg.env
source /home/moonstream/moonstream-db-v3-indexes-secrets/pg.env
'';
});
}