Skip to content

Commit 0fd784f

Browse files
author
User
committed
Update .gitignore to exclude .env files and remove them from version control
1 parent 6c9b1fa commit 0fd784f

File tree

3 files changed

+67
-48
lines changed

3 files changed

+67
-48
lines changed

.env

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

.gitignore

Lines changed: 67 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,71 @@
1-
.vscode
1+
# Environment files
2+
.env
3+
.env.*
4+
!.env.example
5+
6+
# Python
7+
__pycache__/
8+
*.py[cod]
9+
*$py.class
10+
*.so
11+
.Python
12+
build/
13+
develop-eggs/
14+
dist/
15+
downloads/
16+
eggs/
17+
.eggs/
18+
lib/
19+
lib64/
20+
parts/
21+
sdist/
22+
var/
23+
wheels/
24+
*.egg-info/
25+
.installed.cfg
26+
*.egg
27+
28+
# Virtual Environment
29+
.venv
30+
venv/
31+
ENV/
32+
33+
# IDE
34+
.vscode/
35+
.idea/
36+
*.swp
37+
*.swo
38+
.DS_Store
39+
40+
# Testing
41+
.coverage
42+
htmlcov/
43+
.pytest_cache/
44+
.tox/
45+
46+
# Logs
47+
logs/
48+
*.log
49+
50+
# Node.js
251
node_modules/
52+
53+
# Local development
54+
.env.local
55+
.env.development.local
56+
.env.test.local
57+
.env.production.local
58+
59+
# Debug logs
60+
npm-debug.log*
61+
yarn-debug.log*
62+
yarn-error.log*
63+
64+
# Misc
65+
.DS_Store
66+
*.pem
67+
68+
# Playwright
369
/test-results/
470
/playwright-report/
571
/blob-report/

frontend/.env

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

0 commit comments

Comments
 (0)