backend / shell.nix
Bastien
feat(security): add an API-Key Mechanism
d60934b
Raw
History Blame Contribute Delete
142 Bytes
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = with pkgs; [
uv
ngrok
];
shellHook = ''
uv --version
'';
}