feature: Adds hello world for gui.

This commit is contained in:
greysoh 2024-04-28 14:36:51 -04:00
parent 07dad7c9eb
commit 871fd4c2c5
No known key found for this signature in database
GPG key ID: FE0F173B8FC01571
4 changed files with 41 additions and 1 deletions

View file

@ -1,7 +1,18 @@
{
pkgs ? import <nixpkgs> { },
}: pkgs.mkShell {
buildInputs = [ pkgs.nodejs pkgs.openssl pkgs.postgresql pkgs.lsof ];
buildInputs = with pkgs; [
# gui/
cargo
rustc
# api/
nodejs
openssl
postgresql
lsof
];
shellHook = ''
export PRISMA_QUERY_ENGINE_BINARY=${pkgs.prisma-engines}/bin/query-engine
export PRISMA_QUERY_ENGINE_LIBRARY=${pkgs.prisma-engines}/lib/libquery_engine.node