Nasywan commited on
Commit
cd1559b
·
1 Parent(s): f84b46f

Initial deployment: Iris Classification API

Browse files
Files changed (1) hide show
  1. .gitignore +139 -0
.gitignore ADDED
@@ -0,0 +1,139 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Python
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+ *.so
6
+ .Python
7
+ build/
8
+ develop-eggs/
9
+ dist/
10
+ downloads/
11
+ eggs/
12
+ .eggs/
13
+ lib/
14
+ lib64/
15
+ parts/
16
+ sdist/
17
+ var/
18
+ wheels/
19
+ *.egg-info/
20
+ .installed.cfg
21
+ *.egg
22
+ MANIFEST
23
+
24
+ # Virtual environments
25
+ .env
26
+ .venv
27
+ env/
28
+ venv/
29
+ ENV/
30
+ env.bak/
31
+ venv.bak/
32
+
33
+ # PyInstaller
34
+ *.manifest
35
+ *.spec
36
+
37
+ # Installer logs
38
+ pip-log.txt
39
+ pip-delete-this-directory.txt
40
+
41
+ # Unit test / coverage reports
42
+ htmlcov/
43
+ .tox/
44
+ .nox/
45
+ .coverage
46
+ .coverage.*
47
+ .cache
48
+ nosetests.xml
49
+ coverage.xml
50
+ *.cover
51
+ .hypothesis/
52
+ .pytest_cache/
53
+
54
+ # Jupyter Notebook
55
+ .ipynb_checkpoints
56
+
57
+ # IPython
58
+ profile_default/
59
+ ipython_config.py
60
+
61
+ # pyenv
62
+ .python-version
63
+
64
+ # Environments
65
+ .env
66
+ .env.local
67
+ .env.development
68
+ .env.test
69
+ .env.production
70
+
71
+ # Flask
72
+ instance/
73
+ .webassets-cache
74
+
75
+ # Scrapy
76
+ .scrapy
77
+
78
+ # Sphinx documentation
79
+ docs/_build/
80
+
81
+ # PyBuilder
82
+ target/
83
+
84
+ # mypy
85
+ .mypy_cache/
86
+ .dmypy.json
87
+ dmypy.json
88
+
89
+ # Pyre type checker
90
+ .pyre/
91
+
92
+ # IDEs
93
+ .vscode/
94
+ .idea/
95
+ *.swp
96
+ *.swo
97
+ *~
98
+
99
+ # OS
100
+ .DS_Store
101
+ .DS_Store?
102
+ ._*
103
+ .Spotlight-V100
104
+ .Trashes
105
+ ehthumbs.db
106
+ Thumbs.db
107
+
108
+ # Logs
109
+ *.log
110
+ logs/
111
+
112
+ # Model files (if you want to exclude them)
113
+ # *.pkl
114
+ # *.joblib
115
+ # *.h5
116
+ # *.model
117
+
118
+ # Data files (if you want to exclude them)
119
+ # *.csv
120
+ # *.json
121
+ # *.xlsx
122
+
123
+ # Temporary files
124
+ *.tmp
125
+ *.temp
126
+ *.bak
127
+ *.swp
128
+ *~.nib
129
+
130
+ # Docker
131
+ .dockerignore
132
+
133
+ # Git
134
+ .git/
135
+ .gitattributes
136
+
137
+ # Backup files
138
+ *.backup
139
+ *.old