Skip to content
This repository was archived by the owner on Feb 1, 2026. It is now read-only.

Commit 5c604d0

Browse files
Spacehunterzclaude
andcommitted
chore: Protect credentials by removing .env files from tracking
- Remove .env and .env.local from git tracking (contain GitHub OAuth secrets) - Add backend .gitignore to prevent future accidental commits of credentials - Keep .env.example as template for developers Security: GitHub OAuth credentials and other secrets are now protected from public repo. 🤖 Generated with Claude Code Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
1 parent 23632b1 commit 5c604d0

3 files changed

Lines changed: 22 additions & 14 deletions

File tree

apps/dashboard/backend/.env

Lines changed: 0 additions & 3 deletions
This file was deleted.

apps/dashboard/backend/.env.local

Lines changed: 0 additions & 11 deletions
This file was deleted.

apps/dashboard/backend/.gitignore

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Environment variables - NEVER commit credentials
2+
.env
3+
.env.local
4+
.env.*.local
5+
6+
# Python
7+
__pycache__/
8+
*.pyc
9+
*.pyo
10+
*.egg-info/
11+
.pytest_cache/
12+
.coverage
13+
14+
# IDE
15+
.vscode/
16+
.idea/
17+
*.swp
18+
*.swo
19+
20+
# Logs
21+
*.log
22+
backend.log

0 commit comments

Comments
 (0)