chore(env): add .env.example with PostgreSQL connection string example

This commit is contained in:
cfngc4594 2025-03-06 16:58:53 +08:00
parent 16cc459f2d
commit 8c67d2696d

3
.env.example Normal file
View File

@ -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"