feat: add auth

This commit is contained in:
Max Koon
2025-10-12 16:03:28 -04:00
parent 0446893a67
commit b4d13e6a9f
17 changed files with 657 additions and 281 deletions

View File

@@ -10,9 +10,18 @@
formatter = forAllSystems (pkgs: pkgs.alejandra);
devShells = forAllSystems (pkgs: {
default = pkgs.mkShell {
shellHook = ''
dev() {
process-compose up -p 0
}
'';
packages = with pkgs; [
corepack
nodejs_22
postgresql
process-compose
];
};
});