prudhviLatha commited on
Commit
7a79eee
·
verified ·
1 Parent(s): e91eb44

Create .gitignore

Browse files
Files changed (1) hide show
  1. .gitignore +69 -0
.gitignore ADDED
@@ -0,0 +1,69 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Environment variables and credentials
2
+ .env
3
+ .env.local
4
+ .env.development
5
+ .env.production
6
+
7
+ # Virtual environments
8
+ venv/
9
+ .venv/
10
+ env/
11
+ env.bak/
12
+ pythonenv/
13
+
14
+ # Python build artifacts
15
+ __pycache__/
16
+ *.pyc
17
+ *.pyo
18
+ *.pyd
19
+ .Python
20
+ build/
21
+ dist/
22
+ *.egg-info/
23
+
24
+ # IDE/Editor files
25
+ .idea/
26
+ .vscode/
27
+ *.sublime-workspace
28
+ *.sublime-project
29
+
30
+ # OS generated files
31
+ .DS_Store
32
+ Thumbs.db
33
+
34
+ # Log files and temporary files
35
+ app.log
36
+ /tmp/
37
+ *.tmp
38
+ *.log
39
+
40
+ # Generated reports and outputs
41
+ contract_summary_*.csv
42
+
43
+ # Node.js (if applicable, e.g., for web integration)
44
+ node_modules/
45
+ npm-debug.log
46
+
47
+ # macOS system files
48
+ *.swp
49
+
50
+ # Windows image file caches
51
+ Thumbs.db
52
+ ehthumbs.db
53
+
54
+ # Python notebooks (if used)
55
+ *.ipynb_checkpoints
56
+
57
+ # Test and coverage reports
58
+ htmlcov/
59
+ .tox/
60
+ .coverage
61
+ .coverage.*
62
+ .cache
63
+ nosetests.xml
64
+ pytest_cache/
65
+
66
+ # Docker (if used)
67
+ Dockerfile
68
+ docker-compose.yml
69
+ .dockerignore