- Changelog started. Existing version 0.0.2 - Add section for application wide TODOs. Each moved to changelog when done - Adjusted .gitignore and .dockerignore - Updated image base to python:3.10-slim-trixie. Cleaned up image build. - Added default environment values to compose file - Cleaned up pyproject.toml. - Deleted unused gui-tk.py.
135 lines
1.8 KiB
Plaintext
135 lines
1.8 KiB
Plaintext
# Secrets (Avoid copying sensitive files into the image)
|
|
.credentials
|
|
.secrets
|
|
auth.yaml
|
|
config.yaml
|
|
*._py_
|
|
|
|
# Editors (Editor-specific config files)
|
|
.vscode/
|
|
.idea/
|
|
|
|
# Vagrant (Vagrant-specific config)
|
|
.vagrant/
|
|
|
|
# Mac/OSX metadata files
|
|
.DS_Store
|
|
|
|
# Windows metadata files
|
|
Thumbs.db
|
|
|
|
# Python compiled bytecode and cache
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
|
|
# C extensions (if not needed during runtime)
|
|
*.so
|
|
|
|
# Distribution / packaging
|
|
.Python
|
|
bin/
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
share/python-wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
MANIFEST
|
|
|
|
# PyInstaller (Avoid including PyInstaller build artifacts)
|
|
*.manifest
|
|
*.spec
|
|
|
|
# Installer logs
|
|
pip-log.txt
|
|
pip-delete-this-directory.txt
|
|
|
|
# Unit test / coverage reports (Not needed for the Docker image)
|
|
htmlcov/
|
|
.tox/
|
|
.nox/
|
|
.coverage
|
|
.coverage.*
|
|
.cache
|
|
nosetests.xml
|
|
coverage.xml
|
|
*.cover
|
|
cover/
|
|
.hypothesis/
|
|
.pytest_cache/
|
|
|
|
# Translations
|
|
*.mo
|
|
*.pot
|
|
|
|
# Django, Flask, and other project-specific files (database, logs, etc.)
|
|
*.log
|
|
local_settings.py
|
|
db.sqlite3
|
|
db.sqlite-journal
|
|
instance/
|
|
.webassets-cache
|
|
|
|
# Scrapy
|
|
.scrapy
|
|
|
|
# Sphinx documentation build output
|
|
docs/_build/
|
|
|
|
# Jupyter Notebook
|
|
.ipynb_checkpoints
|
|
|
|
# IPython
|
|
profile_default/
|
|
ipython_config.py
|
|
|
|
# Virtual environments (Avoid including your virtual environments)
|
|
.env
|
|
.venv
|
|
env/
|
|
venv/
|
|
ENV/
|
|
env.bak/
|
|
venv.bak/
|
|
|
|
# Poetry and other package manager locks
|
|
poetry.lock
|
|
pdm.lock
|
|
.pdm.toml
|
|
.pdm-python
|
|
.pdm-build/
|
|
|
|
# Python environment files (pyenv, pdm, etc.)
|
|
.python-version
|
|
__pypackages__/
|
|
|
|
# Celery
|
|
celerybeat-schedule
|
|
celerybeat.pid
|
|
|
|
# Other type checkers and linters (mypy, pyre, etc.)
|
|
.mypy_cache/
|
|
.dmypy.json
|
|
dmypy.json
|
|
.pyre/
|
|
.pytype/
|
|
cython_debug/
|
|
|
|
design_documents/
|
|
distro_client/subdomain_client.tar.gz
|
|
distro_client/
|
|
config/config.yaml
|
|
config/
|
|
scripts/
|
|
template_vars.env |