Compare commits

..

No commits in common. "main" and "1.0" have entirely different histories.
main ... 1.0

1 changed files with 4 additions and 3 deletions

View File

@ -4,11 +4,12 @@
pkgs.mkShell {
buildInputs = [
pkgs.nodejs
pkgs.yarn
pkgs.yarn # Optional, if you prefer yarn over npm
];
shellHook = ''
export NODE_PATH=$(pwd)/node_modules
echo "audio uploader development shell"
echo "Welcome to the audio uploader development shell!"
'';
}
}