Skip to content

Commit db5912b

Browse files
committed
feat(env): add example environment file and update .gitignore to include .env
1 parent f27e209 commit db5912b

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

.env.example

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# This is an example environment file.
2+
# Copy this file to .env and fill in your actual configuration values.
3+
# The .env file is ignored by Git and should NOT be committed.
4+
5+
DATABASE_URL="postgres://user:password@localhost:5432/db_name"

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,7 @@ build/
1313
.dart_frog
1414

1515
# Test related files
16-
coverage/
16+
coverage/
17+
18+
# Environment variables
19+
.env

0 commit comments

Comments
 (0)