Skip to content

Commit 1edded6

Browse files
added docker, git features
1 parent 95fd00b commit 1edded6

File tree

7 files changed

+918
-310
lines changed

7 files changed

+918
-310
lines changed

.gitignore

Lines changed: 66 additions & 70 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ develop-eggs/
1313
dist/
1414
downloads/
1515
eggs/
16+
apex/
1617
.eggs/
1718
lib/
1819
lib64/
@@ -77,82 +78,77 @@ target/
7778

7879
# Jupyter Notebook
7980
.ipynb_checkpoints
81+
*.ipynb
82+
83+
# Images
84+
*.png
85+
*.jpg
86+
*.jpeg
87+
*.gif
88+
*.bmp
89+
*.tiff
90+
*.ico
91+
*.webp
92+
93+
# Text files
94+
*.txt
95+
*.log
96+
*.csv
97+
*.json
98+
*.yaml
99+
*.yml
80100

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/latest/usage/project/#working-with-version-control
110-
.pdm.toml
111-
.pdm-python
112-
.pdm-build/
113-
114-
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
115-
__pypackages__/
116-
117-
# Celery stuff
118-
celerybeat-schedule
119-
celerybeat.pid
120-
121-
# SageMath parsed files
122-
*.sage.py
123-
124-
# Environments
125-
.env
126-
.venv
127-
env/
101+
# Python
102+
__pycache__/
103+
*.py[cod]
104+
*$py.class
105+
*.so
106+
.Python
107+
build/
108+
develop-eggs/
109+
dist/
110+
downloads/
111+
eggs/
112+
.eggs/
113+
lib/
114+
lib64/
115+
parts/
116+
sdist/
117+
var/
118+
wheels/
119+
*.egg-info/
120+
.installed.cfg
121+
*.egg
122+
123+
# Virtual Environment
128124
venv/
125+
env/
129126
ENV/
127+
.env
128+
.venv
130129
env.bak/
131130
venv.bak/
132131

133-
# Spyder project settings
134-
.spyderproject
135-
.spyproject
136-
137-
# Rope project settings
138-
.ropeproject
139-
140-
# mkdocs documentation
141-
/site
142-
143-
# mypy
144-
.mypy_cache/
145-
.dmypy.json
146-
dmypy.json
147-
148-
# Pyre type checker
149-
.pyre/
150-
151-
# pytype static type analyzer
152-
.pytype/
153-
154-
# Cython debug symbols
155-
cython_debug/
132+
# IDE specific files
133+
.idea/
134+
.vscode/
135+
*.swp
136+
*.swo
137+
.DS_Store
138+
139+
# Model files and data
140+
*.pth
141+
*.pt
142+
*.h5
143+
*.hdf5
144+
*.pkl
145+
*.npy
146+
*.npz
147+
148+
# Temporary files
149+
*.tmp
150+
*.temp
151+
*.bak
156152

157153
# PyCharm
158154
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can

Dockerfile

Lines changed: 0 additions & 58 deletions
This file was deleted.

0 commit comments

Comments
 (0)