anurag008w commited on
Commit
87b8b11
·
unverified ·
1 Parent(s): 1ba751c

Add comprehensive .gitignore file

Browse files
Files changed (1) hide show
  1. .gitignore +44 -0
.gitignore ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # personal workflows
2
+ .github/workflows/
3
+ .git*
4
+ # env/secrets
5
+ .env
6
+ .env.*
7
+ *.pem
8
+ *.key
9
+
10
+ # node
11
+ node_modules/
12
+ npm-debug.log*
13
+ yarn-debug.log*
14
+ pnpm-debug.log*
15
+
16
+ # python
17
+ __pycache__/
18
+ *.pyc
19
+ .venv/
20
+ venv/
21
+
22
+ # logs
23
+ logs/
24
+ *.log
25
+
26
+ # local configs
27
+ .vscode/
28
+ .idea/
29
+
30
+ # build/cache
31
+ dist/
32
+ build/
33
+ .cache/
34
+
35
+ # temp
36
+ tmp/
37
+ temp/
38
+
39
+ # os junk
40
+ .DS_Store
41
+ Thumbs.db
42
+
43
+ # gitignore itself
44
+ .gitignore