Skip to content

Commit a82c1ae

Browse files
committed
Add environment configuration file and update .gitignore to include .env
1 parent b1b282b commit a82c1ae

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

.env.example

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Environment Configuration
2+
# This file contains environment-specific settings that override config files
3+
4+
# Application Settings
5+
APP_NAME="My Custom App"
6+
APP_ENV=development
7+
APP_DEBUG=true
8+
APP_RESPONSE_NUMBER=100
9+
APP_MESSAGE="Hello from the environment!"
10+
11+
# Logging
12+
APP_LOGGING_LEVEL=DEBUG

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ venv/
1414
env/
1515
.venv/
1616
.env/
17+
.env
1718

1819
# IDE/editor-specific files
1920
.vscode/

0 commit comments

Comments
 (0)