SECURITY: Remove .env from Git tracking and add to .gitignore

- Remove sensitive .env file from Git repository
- Add comprehensive .env file patterns to .gitignore
- Prevent accidental commit of environment variables and secrets
This commit is contained in:
Stiftung Development
2025-09-10 23:26:28 +02:00
parent 9075f68d16
commit 2b0114e03f
2 changed files with 4 additions and 33 deletions

4
.gitignore vendored
View File

@@ -3,6 +3,10 @@ ACCOUNTS.txt
*.key
*.pem
*.p12
.env
app/.env
*.env.local
*.env.production
# Python
__pycache__/