Initial commit: stack

This commit is contained in:
jtricerolph 2026-07-01 12:09:54 +00:00
commit fe16a07dd7
11 changed files with 2058 additions and 0 deletions

View file

@ -0,0 +1,4 @@
CREATE USER auth WITH PASSWORD 'CHANGE_ME';
CREATE DATABASE auth_db OWNER auth;
\c auth_db
GRANT ALL ON SCHEMA public TO auth;