diff options
author | jwansek <eddie.atten.ea29@gmail.com> | 2025-06-07 23:43:52 +0100 |
---|---|---|
committer | jwansek <eddie.atten.ea29@gmail.com> | 2025-06-07 23:43:52 +0100 |
commit | 2bdc35bd8159c6ccbb9d87f0abca25f6dd784f52 (patch) | |
tree | 2cd1c25a3de9566141b5530f5ca670175a32027b /.dockerignore | |
parent | 1707d25fab29ea7df358aa29fb6894ba2fcc6eec (diff) | |
download | SmallYTChannelBot-2bdc35bd8159c6ccbb9d87f0abca25f6dd784f52.tar.gz SmallYTChannelBot-2bdc35bd8159c6ccbb9d87f0abca25f6dd784f52.zip |
A lot of fixes and refactoring
Diffstat (limited to '.dockerignore')
-rwxr-xr-x[-rw-r--r--] | .dockerignore | 113 |
1 files changed, 113 insertions, 0 deletions
diff --git a/.dockerignore b/.dockerignore index 26ceb08..2107721 100644..100755 --- a/.dockerignore +++ b/.dockerignore @@ -1,2 +1,115 @@ +logs/ +login.py +graph.png +pid.txt +ch.py +chblacklist.txt +api.log config.json +*.log +*.db +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# C extensions +*.so + +# Distribution / packaging +.vs/ +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +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/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +.hypothesis/ +.pytest_cache/ + +# Translations +*.mo +*.pot + +# Django stuff: +local_settings.py +db.sqlite3 + +# Flask stuff: +instance/ +.webassets-cache + +# Scrapy stuff: +.scrapy + +# Sphinx documentation +docs/_build/ + +# PyBuilder +target/ + +# Jupyter Notebook +.ipynb_checkpoints + +# pyenv +.python-version + +# celery beat schedule file +celerybeat-schedule + +# SageMath parsed files +*.sage.py + +# Environments +.env +.venv +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ + +# Spyder project settings +.spyderproject +.spyproject + +# Rope project settings +.ropeproject + +# mkdocs documentation +/site + +# mypy +.mypy_cache/ |