about summary refs log tree commit diff
path: root/web/panettone/shell.nix
blob: aeafc7afcd99ca0a3ff091adbedc159dd9573aad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ depot ? import ../.. {} }:

with depot.third_party;

mkShell {
  buildInputs = [
    docker-compose
    postgresql
  ];

  PGPASSWORD = "password";
  PGHOST = "localhost";
  PGUSER = "panettone";
  PGDATABASE = "panettone";
}