bigwolfe commited on
Commit
5eeac37
·
0 Parent(s):

Initial commit

Browse files
Files changed (1) hide show
  1. .gitignore +42 -0
.gitignore ADDED
@@ -0,0 +1,42 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Python
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+ *.so
6
+ .Python
7
+ env/
8
+ venv/
9
+ ENV/
10
+ .venv
11
+
12
+ # Node
13
+ node_modules/
14
+ npm-debug.log*
15
+ yarn-debug.log*
16
+ yarn-error.log*
17
+
18
+ # IDE
19
+ .vscode/
20
+ .idea/
21
+ *.swp
22
+ *.swo
23
+ *~
24
+
25
+ # OS
26
+ .DS_Store
27
+ Thumbs.db
28
+
29
+ # Environment variables
30
+ .env
31
+ .env.local
32
+ .env.*.local
33
+
34
+ # Logs
35
+ *.log
36
+ logs/
37
+
38
+ # Build outputs
39
+ dist/
40
+ build/
41
+ *.egg-info/
42
+