Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
bastienp
/
backend
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
5873878
backend
/
shell.nix
bastienp
feat(security): add an API-Key Mechanism
d60934b
13 days ago
raw
Copy download link
history
blame
Safe
142 Bytes
{ pkgs ?
import
<nixpkgs> {} }:
pkgs.mkShell {
buildInputs
=
with
pkgs; [
uv
ngrok
];
shellHook
=
''
uv --version
''
;
}