chore: Bumps dependencies, rewrites development environment system.

This commit is contained in:
greysoh 2024-12-01 13:06:28 -05:00
parent c0a12f53d1
commit 0965c56547
Signed by: imterah
GPG key ID: 8FA7DD57BA6CEA37
12 changed files with 1146 additions and 1265 deletions

View file

@ -1,24 +1,20 @@
{
pkgs ? import <nixpkgs> { },
}: pkgs.mkShell {
buildInputs = with pkgs; [
buildInputs = with pkgs; [
# api/
nodejs
openssl
postgresql
lsof
];
go
gopls
];
shellHook = ''
export PRISMA_QUERY_ENGINE_BINARY=${pkgs.prisma-engines}/bin/query-engine
export PRISMA_QUERY_ENGINE_LIBRARY=${pkgs.prisma-engines}/lib/libquery_engine.node
export PRISMA_SCHEMA_ENGINE_BINARY=${pkgs.prisma-engines}/bin/schema-engine
if [ ! -d ".tmp" ]; then
echo "Hello and welcome to the NextNet project!"
mkdir .tmp
fi
source init.sh
'';
}