add toast and start adding postgres

This commit is contained in:
2026-04-10 20:45:53 +02:00
parent 9b65c5f62b
commit 23ccd3f793
16 changed files with 425 additions and 36 deletions

View File

@ -3,14 +3,16 @@ pkgs.mkShell {
buildInputs = with pkgs;[
rustup
];
nativeBuildInputs = with pkgs;[
nativeBuildInputs = with pkgs;[
libpq
libmysqlclient
sqlite
];
PKG_CONFIG_PATH = "${pkgs.openssl.dev}/lib/pkgconfig";
shellHook = ''
source .env
[ ! -f .env ] || export $(grep -v '^#' .env | xargs)
'';
UPLOAD_FOLDER="./test/";
}