Skip to content

Commit 76dff02

Browse files
committed
Adding Dockerfile
1 parent 083f716 commit 76dff02

26 files changed

+5509
-41
lines changed

.dockerignore

Lines changed: 170 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,170 @@
1+
# Byte-compiled / optimized / DLL files
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
6+
# C extensions
7+
*.so
8+
9+
# Distribution / packaging
10+
.Python
11+
build/
12+
develop-eggs/
13+
dist/
14+
downloads/
15+
eggs/
16+
.eggs/
17+
lib/
18+
lib64/
19+
parts/
20+
sdist/
21+
var/
22+
wheels/
23+
share/python-wheels/
24+
*.egg-info/
25+
.installed.cfg
26+
*.egg
27+
MANIFEST
28+
29+
# PyInstaller
30+
# Usually these files are written by a python script from a template
31+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
32+
*.manifest
33+
*.spec
34+
35+
# Installer logs
36+
pip-log.txt
37+
pip-delete-this-directory.txt
38+
39+
# Unit test / coverage reports
40+
htmlcov/
41+
.tox/
42+
.nox/
43+
.coverage
44+
.coverage.*
45+
.cache
46+
nosetests.xml
47+
coverage.xml
48+
*.cover
49+
*.py,cover
50+
.hypothesis/
51+
.pytest_cache/
52+
cover/
53+
54+
# Translations
55+
*.mo
56+
*.pot
57+
58+
# Django stuff:
59+
*.log
60+
local_settings.py
61+
db.sqlite3
62+
db.sqlite3-journal
63+
64+
# Flask stuff:
65+
instance/
66+
.webassets-cache
67+
68+
# Scrapy stuff:
69+
.scrapy
70+
71+
# Sphinx documentation
72+
docs/_build/
73+
74+
# PyBuilder
75+
.pybuilder/
76+
target/
77+
78+
# Jupyter Notebook
79+
.ipynb_checkpoints
80+
81+
# IPython
82+
profile_default/
83+
ipython_config.py
84+
85+
# pyenv
86+
# For a library or package, you might want to ignore these files since the code is
87+
# intended to run in multiple environments; otherwise, check them in:
88+
# .python-version
89+
90+
# pipenv
91+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
92+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
93+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
94+
# install all needed dependencies.
95+
#Pipfile.lock
96+
97+
# poetry
98+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
99+
# This is especially recommended for binary packages to ensure reproducibility, and is more
100+
# commonly ignored for libraries.
101+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
102+
#poetry.lock
103+
104+
# pdm
105+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
106+
#pdm.lock
107+
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
108+
# in version control.
109+
# https://pdm.fming.dev/#use-with-ide
110+
.pdm.toml
111+
112+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
113+
__pypackages__/
114+
115+
# Celery stuff
116+
celerybeat-schedule
117+
celerybeat.pid
118+
119+
# SageMath parsed files
120+
*.sage.py
121+
122+
# Environments
123+
.venv
124+
env/
125+
venv/
126+
ENV/
127+
env.bak/
128+
venv.bak/
129+
130+
# Spyder project settings
131+
.spyderproject
132+
.spyproject
133+
134+
# Rope project settings
135+
.ropeproject
136+
137+
# mkdocs documentation
138+
/site
139+
140+
# mypy
141+
.mypy_cache/
142+
.dmypy.json
143+
dmypy.json
144+
145+
# Pyre type checker
146+
.pyre/
147+
148+
# pytype static type analyzer
149+
.pytype/
150+
151+
# Cython debug symbols
152+
cython_debug/
153+
154+
# PyCharm
155+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
156+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
157+
# and can be added to the global gitignore or merged into this file. For a more nuclear
158+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
159+
#.idea/
160+
161+
*.db
162+
*.pkl
163+
*.cache
164+
.hydra
165+
mlruns
166+
*.xml
167+
slurm-*.out
168+
.python-version
169+
sbi-logs
170+
catboost_info
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**Describe the bug**
11+
A clear and concise description of what the bug is.
12+
13+
**To Reproduce**
14+
Steps to reproduce the behavior:
15+
1. Go to '...'
16+
2. Click on '....'
17+
3. Scroll down to '....'
18+
4. See error
19+
20+
**Expected behavior**
21+
A clear and concise description of what you expected to happen.
22+
23+
**Screenshots**
24+
If applicable, add screenshots to help explain your problem.
25+
26+
**Desktop (please complete the following information):**
27+
- OS: [e.g. iOS]
28+
- Browser [e.g. chrome, safari]
29+
- Version [e.g. 22]
30+
31+
**Smartphone (please complete the following information):**
32+
- Device: [e.g. iPhone6]
33+
- OS: [e.g. iOS8.1]
34+
- Browser [e.g. stock browser, safari]
35+
- Version [e.g. 22]
36+
37+
**Additional context**
38+
Add any other context about the problem here.
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Documentation Improvement
2+
description: Report wrong or missing documentation
3+
labels: [documentation]
4+
5+
body:
6+
- type: textarea
7+
id: location
8+
attributes:
9+
label: Location of the documentation
10+
description: >
11+
Please provide the location of the documentation, e.g. the URL of the documentation
12+
validations:
13+
required: true
14+
- type: textarea
15+
id: problem
16+
attributes:
17+
label: Documentation problem
18+
description: >
19+
Please provide a description of what documentation you believe needs to be fixed/improved
20+
validations:
21+
required: true
22+
- type: textarea
23+
id: suggested-fix
24+
attributes:
25+
label: Suggested fix for documentation
26+
description: >
27+
Please explain the suggested fix and **why** it's better than the existing documentation
28+
validations:
29+
required: true
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**Is your feature request related to a problem? Please describe.**
11+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12+
13+
**Describe the solution you'd like**
14+
A clear and concise description of what you want to happen.
15+
16+
**Describe alternatives you've considered**
17+
A clear and concise description of any alternative solutions or features you've considered.
18+
19+
**Additional context**
20+
Add any other context or screenshots about the feature request here.
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: "\U00002753 Question"
2+
description: Do you have a question about this project
3+
labels: ["question"]
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: "Provide context about what your question applies to and any related files that can can inform us"
8+
- type: textarea
9+
id: question-area
10+
attributes:
11+
label: What is your question?
12+
placeholder: Write Message and Upload Files Here
13+
validations:
14+
required: true
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: "\U0001F527 Refactor request"
2+
description: Exising code needs to be changed.
3+
labels: ["refactor"]
4+
body:
5+
- type: textarea
6+
id: location-textarea
7+
attributes:
8+
label: "Where is the code located?"
9+
placeholder: Describe what project/directory the code is located within here
10+
validations:
11+
required: true
12+
- type: textarea
13+
id: change-required-textarea
14+
attributes:
15+
label: What needs to be changed?
16+
placeholder: Describe changes required to the code here
17+
validations:
18+
required: true
19+
- type: textarea
20+
id: code-name
21+
attributes:
22+
label: Why does the code need changing?
23+
placeholder: Describe why the code needs to change here
24+
validations:
25+
required: true

.github/dependabot.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: pip
4+
directory: .
5+
schedule:
6+
interval: "monthly"

.github/pull_request_template.md

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
# Related Issue or bug
2+
3+
Info about Issue or bug
4+
5+
Closes #[issue number that will be closed through this PR]
6+
7+
# Describe the changes you've made
8+
9+
A clear and concise description of what you have done to successfully close your assigned issue. Any new files? or anything you feel to let us know!
10+
11+
# Type of change
12+
13+
Please delete options that are not relevant.
14+
<!--
15+
Example how to mark a checkbox :-
16+
- [x] My code follows the code style of this project.
17+
-->
18+
- [ ] Bug fix (non-breaking change which fixes an issue)
19+
- [ ] New feature (non-breaking change which adds functionality)
20+
- [ ] Code style update (formatting, local variables)
21+
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
22+
- [ ] This change requires a documentation update
23+
24+
# How Has This Been Tested?
25+
26+
Please describe the tests that you ran to verify your changes. Provide instructions so we can reproduce.
27+
28+
# Describe if there is any unusual behaviour of your code(Write `NA` if there isn't)
29+
30+
A clear and concise description of it.
31+
32+
# Checklist:
33+
34+
<!--
35+
Example how to mark a checkbox :-
36+
- [x] My code follows the code style of this project.
37+
-->
38+
- [ ] My code follows the style guidelines of this project.
39+
- [ ] I have performed a self-review of my own code.
40+
- [ ] I have commented my code, particularly in hard-to-understand areas.
41+
- [ ] I have made corresponding changes to the documentation.
42+
- [ ] My changes generate no new warnings.
43+
- [ ] I have added tests that prove my fix is effective or that my feature works.
44+
- [ ] New and existing unit tests pass locally with my changes.
45+
- [ ] Any dependent changes have been merged and published in downstream modules.
46+
47+
# Screenshots
48+
49+
Original | Updated
50+
:--------------------: |:--------------------:
51+
**original screenshot** | <b>updated screenshot </b> |

0 commit comments

Comments
 (0)