init: add code
This commit is contained in:
commit
79c4323666
26 changed files with 3684 additions and 0 deletions
15
shell.nix
Normal file
15
shell.nix
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
{ pkgs ? import <nixpkgs> { } }:
|
||||
pkgs.mkShell {
|
||||
buildInputs = with pkgs; [
|
||||
prisma_7
|
||||
pnpm_10
|
||||
nodejs_25
|
||||
vscode-langservers-extracted
|
||||
typescript
|
||||
];
|
||||
shellHook = ''
|
||||
export PRISMA_QUERY_ENGINE_LIBRARY=${pkgs.prisma-engines}/lib/libquery_engine.node
|
||||
export PRISMA_QUERY_ENGINE_BINARY=${pkgs.prisma-engines}/bin/query-engine
|
||||
export PRISMA_SCHEMA_ENGINE_BINARY=${pkgs.prisma-engines}/bin/schema-engine
|
||||
'';
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue