diff options
Diffstat (limited to 'web/panettone/shell.nix')
-rw-r--r-- | web/panettone/shell.nix | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/web/panettone/shell.nix b/web/panettone/shell.nix new file mode 100644 index 000000000000..483481ca9aa1 --- /dev/null +++ b/web/panettone/shell.nix @@ -0,0 +1,15 @@ +{ depot ? import ../.. { } }: + +with depot.third_party.nixpkgs; + +mkShell { + buildInputs = [ + docker-compose + postgresql + ]; + + PGPASSWORD = "password"; + PGHOST = "localhost"; + PGUSER = "panettone"; + PGDATABASE = "panettone"; +} |