111 lines
1.5 KiB
Plaintext
111 lines
1.5 KiB
Plaintext
# Git
|
|
.gitignore
|
|
.github
|
|
.gitattributes
|
|
LICENSE
|
|
README.md
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
scratch_*.py
|
|
scratch/
|
|
.claude/
|
|
*.local.*
|
|
node_modules/
|
|
frontend/node_modules/
|
|
deploy/compose/docker-compose-dev.yml
|
|
data/*
|
|
!data/tariffs.example.json
|
|
!data/locales-overrides.example.json
|
|
|
|
|
|
# CI
|
|
.codeclimate.yml
|
|
.travis.yml
|
|
.taskcluster.yml
|
|
|
|
# Docker
|
|
docker-compose.yml
|
|
deploy/compose/*.yml
|
|
.dockerignore
|
|
tmp/
|
|
|
|
# WebApp build artifacts (regenerated inside Docker)
|
|
backend/bot/app/web/templates/subscription_webapp.css
|
|
backend/bot/app/web/templates/subscription_webapp.js
|
|
backend/bot/app/web/templates/subscription_webapp.min.*.js
|
|
backend/bot/app/web/templates/subscription_webapp.*.css
|
|
|
|
# Byte-compiled / optimized / DLL files
|
|
**/__pycache__/
|
|
**/*.py[cod]
|
|
|
|
# C extensions
|
|
*.so
|
|
|
|
# Distribution / packaging
|
|
.Python
|
|
env/
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
|
|
# 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
|
|
.cache
|
|
nosetests.xml
|
|
coverage.xml
|
|
|
|
# Translations
|
|
*.mo
|
|
*.pot
|
|
|
|
# Django stuff:
|
|
*.log
|
|
|
|
# Sphinx documentation
|
|
docs/_build/
|
|
|
|
# PyBuilder
|
|
target/
|
|
|
|
# Virtual environment
|
|
.env*
|
|
.venv/
|
|
venv/
|
|
|
|
# PyCharm
|
|
.idea
|
|
|
|
# Python mode for VIM
|
|
.ropeproject
|
|
**/.ropeproject
|
|
|
|
# Vim swap files
|
|
**/*.swp
|
|
|
|
# VS Code
|
|
.vscode/
|