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

with depot.third_party.nixpkgs;

mkShell {
  buildInputs = [
    docker-compose
    postgresql
  ];

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