From 8c67d2696d5774e0b7ad66f2533aae84d56e7753 Mon Sep 17 00:00:00 2001 From: cfngc4594 Date: Thu, 6 Mar 2025 16:58:53 +0800 Subject: [PATCH] chore(env): add .env.example with PostgreSQL connection string example --- .env.example | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .env.example diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..02b386c --- /dev/null +++ b/.env.example @@ -0,0 +1,3 @@ +# The connection string for the PostgreSQL database +# Format: postgresql://username:password@hostname:port/database_name?schema=public +DATABASE_URL="postgresql://username:password@localhost:5432/mydb?schema=public"