Skip to content

Commit

Permalink
Added .dockerignore and tweak .gitignore file
Browse files Browse the repository at this point in the history
  • Loading branch information
cccs-sgaron committed Apr 15, 2020
1 parent 6530038 commit ff8882f
Show file tree
Hide file tree
Showing 2 changed files with 97 additions and 12 deletions.
22 changes: 22 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
Dockerfile
.idea
.git

pipelines
venv
env
test
tests
exemples
docs

pip-log.txt
pip-delete-this-directory.txt
.tox
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*,cover
*.log
87 changes: 75 additions & 12 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,21 +1,84 @@
# Add any directories, files, or patterns you don't want to be tracked by version control
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# IDE files
.pydevproject
.python-version
.idea

# Testing artifacts
.pytest_cache
htmlcov
# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
.pytest_cache/
cover/

# OS Files
ehthumbs.db
Thumbs.db
# Translations
*.mo
*.pot

# Build artifacts
build/
dist/
*.py[cod]
*.egg-info
# PyBuilder
.pybuilder/
target/

# Jupyter Notebook
.ipynb_checkpoints

# IPython
profile_default/
ipython_config.py

# Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/

# Cython debug symbols
cython_debug/

0 comments on commit ff8882f

Please sign in to comment.