From 358c59870f6acde91f31a0b829c3ae797d95c026 Mon Sep 17 00:00:00 2001 From: phoenix Date: Sun, 13 Apr 2025 12:43:28 -0400 Subject: [PATCH] Added auth_db.env sample file --- auth_db.env.sample | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 auth_db.env.sample diff --git a/auth_db.env.sample b/auth_db.env.sample new file mode 100644 index 0000000..8bd245e --- /dev/null +++ b/auth_db.env.sample @@ -0,0 +1,5 @@ +POSTGRES_USER=icarus_test +POSTGRES_PASSWORD=password +POSTGRES_DB=icarus_auth_test + +DATABASE_URL=postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@localhost:5432/${POSTGRES_DB} \ No newline at end of file