Skip to content

Commit ec33b98

Browse files
authored
Merge pull request #52 from ut-code/setup-dev-env
setup development env
2 parents e440769 + 8356a7a commit ec33b98

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed

.envrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
use nix

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ bun.lockb
2323
# misc
2424
.DS_Store
2525
*.pem
26+
.direnv
2627

2728
# debug
2829
npm-debug.log*

shell.nix

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{pkgs ? import <nixpkgs> {}}:
2+
pkgs.mkShell {
3+
packages = with pkgs; [
4+
nodejs-slim
5+
bun
6+
];
7+
}

0 commit comments

Comments
 (0)