feat : nix shell + chore deps
This commit is contained in:
parent
e1a7947473
commit
05bae2330d
4 changed files with 24 additions and 4965 deletions
1
.envrc
Normal file
1
.envrc
Normal file
|
@ -0,0 +1 @@
|
|||
use nix
|
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,3 +1,4 @@
|
|||
.direnv
|
||||
.DS_Store
|
||||
rsync.sh
|
||||
*.swp
|
||||
|
|
4967
package-lock.json
generated
4967
package-lock.json
generated
File diff suppressed because it is too large
Load diff
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
Reference in a new issue