# LogBoard+ - .gitignore # Автор: Сергей Антропов # Сайт: https://devops.org.ru # Переменные окружения .env .env.local .env.production .env.staging # Логи *.log logs/ log/ # Снимки логов snapshots/*.log snapshots/*.txt # Python __pycache__/ *.py[cod] *$py.class *.so .Python build/ develop-eggs/ dist/ downloads/ eggs/ .eggs/ lib/ lib64/ parts/ sdist/ var/ wheels/ *.egg-info/ .installed.cfg *.egg MANIFEST # Virtual environments venv/ env/ ENV/ env.bak/ venv.bak/ # IDE .vscode/ .idea/ *.swp *.swo *~ # OS .DS_Store .DS_Store? ._* .Spotlight-V100 .Trashes ehthumbs.db Thumbs.db # Docker .dockerignore # Temporary files *.tmp *.temp *.bak *.backup # Database *.db *.sqlite *.sqlite3 # Certificates *.pem *.key *.crt *.csr # Backup files backup/ backups/ # Test coverage htmlcov/ .tox/ .coverage .coverage.* .cache nosetests.xml coverage.xml *.cover .hypothesis/ .pytest_cache/ # Jupyter Notebook .ipynb_checkpoints # pyenv .python-version # pipenv Pipfile.lock # PEP 582 __pypackages__/ # Celery celerybeat-schedule celerybeat.pid # SageMath parsed files *.sage.py # Spyder project settings .spyderproject .spyproject # Rope project settings .ropeproject # mkdocs documentation /site # mypy .mypy_cache/ .dmypy.json dmypy.json # Pyre type checker .pyre/ # pytype static type analyzer .pytype/ # Cython debug symbols cython_debug/ # Local development local/ dev/