Add some env vars to dev shell
Some checks failed
/ systems (push) Successful in 4m16s
/ dev-shell (push) Successful in 55s
/ check (push) Failing after 2m53s
/ rust-packages (push) Successful in 1m8s
/ terraform-providers (push) Successful in 1m3s

This commit is contained in:
Kaare Hoff Skovgaard 2025-08-12 23:38:13 +02:00
parent 00121f2516
commit 973eb085c4
Signed by: khs
GPG key ID: C7D890804F01E9F0

View file

@ -16,4 +16,10 @@ mkShell {
crane = inputs.crane; crane = inputs.crane;
advisory-db = inputs.advisory-db; advisory-db = inputs.advisory-db;
}).devDeps; }).devDeps;
shellHook = ''
export PGHOST=127.0.0.1
export PGPORT=55432
export OIDC_URL=http://localhost:8082/.well-known/openid-configuration
'';
} }