We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e440769 + 8356a7a commit ec33b98Copy full SHA for ec33b98
3 files changed
.envrc
@@ -0,0 +1 @@
1
+use nix
.gitignore
@@ -23,6 +23,7 @@ bun.lockb
23
# misc
24
.DS_Store
25
*.pem
26
+.direnv
27
28
# debug
29
npm-debug.log*
shell.nix
@@ -0,0 +1,7 @@
+{pkgs ? import <nixpkgs> {}}:
2
+pkgs.mkShell {
3
+ packages = with pkgs; [
4
+ nodejs-slim
5
+ bun
6
+ ];
7
+}
0 commit comments