c4fb0432ae
GitOrigin-RevId: 3fc1143a04da49a92c3663813c6a0c1e8ccd477f
15 lines
228 B
Nix
15 lines
228 B
Nix
{ depot ? import ../.. {} }:
|
|
|
|
with depot.third_party;
|
|
|
|
mkShell {
|
|
buildInputs = [
|
|
docker-compose
|
|
postgresql
|
|
];
|
|
|
|
PGPASSWORD = "password";
|
|
PGHOST = "localhost";
|
|
PGUSER = "panettone";
|
|
PGDATABASE = "panettone";
|
|
}
|