feat : nix shell + chore deps
This commit is contained in:
parent
e1a7947473
commit
05bae2330d
4 changed files with 24 additions and 4965 deletions
20
shell.nix
Normal file
20
shell.nix
Normal file
|
@ -0,0 +1,20 @@
|
|||
{ pkgs ? import <nixpkgs> {} }: with pkgs;
|
||||
|
||||
mkShell {
|
||||
buildInputs = [
|
||||
redis
|
||||
bun
|
||||
];
|
||||
|
||||
shellHook =
|
||||
''
|
||||
echo "
|
||||
__ __ ___ __ __ __
|
||||
| V | __| V |/__\
|
||||
| \_/ | _|| \_/ | \/ |
|
||||
|_| |_|___|_| |_|\__/
|
||||
"
|
||||
redis-server &
|
||||
bun run start
|
||||
'';
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue