hobs commited on
Commit
01b532f
1 Parent(s): c25d79d

ignore .env

Browse files
Files changed (1) hide show
  1. .gitignore +100 -0
.gitignore ADDED
@@ -0,0 +1,100 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Temporary and binary files
2
+ venv
3
+ *.bak
4
+ *~
5
+ *.py[cod]
6
+ *.so
7
+ *.cfg
8
+ !.isort.cfg
9
+ *.orig
10
+ *.log
11
+ *.pot
12
+ .pytest_cache/*
13
+ __pycache__/*
14
+ .DS_*
15
+ .cache/*
16
+ .*.swp
17
+ .ipynb_checkpoints
18
+ */.ipynb_checkpoints/*
19
+ .coverage*
20
+ cache_dir/
21
+
22
+
23
+ # pypi package setup files
24
+ # pyproject must not be in root dir for `pip install -e .` to work
25
+ # pyproject.toml
26
+ !scripts/pyproject.toml
27
+ !setup.cfg
28
+
29
+ # Internal working cache for poetry
30
+ poetry.lock
31
+
32
+
33
+ # Project files
34
+ .ropeproject
35
+ .project
36
+ .pydevproject
37
+ .settings
38
+ .idea
39
+ .vscode
40
+ tags
41
+ *.code-workspace
42
+ *.sublime-workspace
43
+
44
+ # Package files
45
+ *.egg
46
+ *.eggs/
47
+ .installed.cfg
48
+ *.egg-info
49
+
50
+ # Unittest and coverage
51
+ htmlcov/*
52
+ .coverage
53
+ .tox
54
+ junit.xml
55
+ coverage.xml
56
+ .pytest_cache/
57
+ pytest-results*
58
+
59
+ # Build and docs folder/files
60
+ build/*
61
+ dist/*
62
+ sdist/*
63
+ docs/api/*
64
+ docs/_rst/*
65
+ docs/_build/*
66
+ cover/*
67
+ runs/*
68
+ MANIFEST
69
+
70
+ # Mac
71
+ __MACOSX
72
+
73
+ # KDE
74
+ .directory
75
+
76
+ # BigData and Models
77
+ db.sqlite3
78
+ *.bz2
79
+ *.zip
80
+ *.pkl
81
+ *.npy
82
+ **/data/qa-models/*
83
+ **/data/models/pulse/*
84
+ **/data/predictions*
85
+ **/data/squad/*
86
+ **/data/testsets/accuracy_report*
87
+ **/albert-large*
88
+ **/data/corpora/wikipedia/wikipedia-titles*
89
+
90
+ # Per-project virtualenvs
91
+ .venv*/
92
+
93
+ # docs html
94
+ docs/**/*.html
95
+
96
+ # secrets
97
+ .env
98
+ .bash_env
99
+ **/*secret*
100
+ **/*private*