feat : nix shell + chore deps

This commit is contained in:
Florian Schmitt 2024-01-11 17:17:52 +03:00
parent e1a7947473
commit 05bae2330d
4 changed files with 24 additions and 4965 deletions

1
.envrc Normal file
View file

@ -0,0 +1 @@
use nix

1
.gitignore vendored
View file

@ -1,3 +1,4 @@
.direnv
.DS_Store .DS_Store
rsync.sh rsync.sh
*.swp *.swp

4967
package-lock.json generated

File diff suppressed because it is too large Load diff

20
shell.nix Normal file
View file

@ -0,0 +1,20 @@
{ pkgs ? import <nixpkgs> {} }: with pkgs;
mkShell {
buildInputs = [
redis
bun
];
shellHook =
''
echo "
__ __ ___ __ __ __
| V | __| V |/__\
| \_/ | _|| \_/ | \/ |
|_| |_|___|_| |_|\__/
"
redis-server &
bun run start
'';
}