Compare commits

..

No commits in common. "a40de07a0d9431b363ffdf3b34830b8b2bdeac2b" and "f9c56ca2154505103f3a7e3f0822947e5ff9c468" have entirely different histories.

2 changed files with 58 additions and 209 deletions

127
.gitignore vendored
View File

@ -1,17 +1,14 @@
# ========================================== # Byte-compiled / optimized / DLL files
# Python cache and bytecode files
# ==========================================
__pycache__/ __pycache__/
*.py[cod] *.py[cod]
*$py.class *$py.class
**/__pycache__/ **/__pycache__/
**/*.pyc **/*.py[cod]
**/*.pyo
**/*.pyd
# ========================================== # C extensions
# Virtual environments *.so
# ==========================================
# Virtual environment
.env .env
.venv .venv
env/ env/
@ -20,29 +17,21 @@ ENV/
env.bak/ env.bak/
venv.bak/ venv.bak/
# ========================================== # pipenv
# Dependency files
# ==========================================
Pipfile.lock Pipfile.lock
# Poetry
poetry.lock poetry.lock
# ========================================== # PyInstaller
# Distribution / build *.manifest
# ========================================== *.spec
build/
dist/
*.egg-info/
.eggs/
# ==========================================
# Installer logs # Installer logs
# ==========================================
pip-log.txt pip-log.txt
pip-delete-this-directory.txt pip-delete-this-directory.txt
# ========================================== # Unit test / coverage reports
# Unit test / coverage
# ==========================================
htmlcov/ htmlcov/
.tox/ .tox/
.nox/ .nox/
@ -55,14 +44,8 @@ coverage.xml
*.py,cover *.py,cover
.hypothesis/ .hypothesis/
.pytest_cache/ .pytest_cache/
.mypy_cache/
.dmypy.json
dmypy.json
.pyre/
# ========================================== # Django stuff:
# Django
# ==========================================
*.log *.log
local_settings.py local_settings.py
db.sqlite3 db.sqlite3
@ -70,71 +53,77 @@ db.sqlite3-journal
media/ media/
staticfiles/ staticfiles/
# Migrations (optional, keep *.py if you want to version control) # Translations
*.mo
# Django migrations
**/migrations/*.pyc **/migrations/*.pyc
**/migrations/__pycache__/ **/migrations/__pycache__/
**/migrations/*.py
# ========================================== # PyCharm
# IDEs and editors
# ==========================================
.idea/ .idea/
# VS Code
.vscode/ .vscode/
# ========================================== # MyPy
# OS-specific files .mypy_cache/
# ========================================== .dmypy.json
.DS_Store dmypy.json
Thumbs.db
ehthumbs.db
Desktop.ini
# ========================================== # Pyre type checker
# Environment variable files .pyre/
# ==========================================
*.env
*.env.*
# ==========================================
# Profiles # Profiles
# ========================================== .prof
*.prof
# ========================================== # Backup files
# Backup and swap files
# ==========================================
*~ *~
*.bak *.bak
*.swp *.swp
*.swo *.swo
# ========================================== # macOS
# Docker (optional) .DS_Store
# ==========================================
# Windows
Thumbs.db
ehthumbs.db
Desktop.ini
# dotenv environment variables
*.env
*.env.*
# coverage reports
*.lcov
# Docker
**/Dockerfile **/Dockerfile
**/docker-compose*.yml **/docker-compose*.yml
# ========================================== # Build
# Celery (if used) build/
# ========================================== dist/
*.egg-info/
.eggs/
# If you use celery
celerybeat-schedule celerybeat-schedule
celerybeat.pid celerybeat.pid
# ========================================== # If you use Sphinx
# Sphinx docs
# ==========================================
docs/_build/ docs/_build/
# ==========================================
# PyBuilder # PyBuilder
# ==========================================
target/ target/
# ==========================================
# Jupyter Notebook # Jupyter Notebook
# ========================================== .ipynb_checkpoints
.ipynb_checkpoints/
# ==========================================
# pyenv # pyenv
# ==========================================
.python-version .python-version
# Environments
.env/

View File

@ -1,140 +0,0 @@
# ==========================================
# Python cache and bytecode files
# ==========================================
__pycache__/
*.py[cod]
*$py.class
**/__pycache__/
**/*.pyc
**/*.pyo
**/*.pyd
# ==========================================
# Virtual environments
# ==========================================
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/
# ==========================================
# Dependency files
# ==========================================
Pipfile.lock
poetry.lock
# ==========================================
# Distribution / build
# ==========================================
build/
dist/
*.egg-info/
.eggs/
# ==========================================
# Installer logs
# ==========================================
pip-log.txt
pip-delete-this-directory.txt
# ==========================================
# Unit test / coverage
# ==========================================
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
.pytest_cache/
.mypy_cache/
.dmypy.json
dmypy.json
.pyre/
# ==========================================
# Django
# ==========================================
*.log
local_settings.py
db.sqlite3
db.sqlite3-journal
media/
staticfiles/
# Migrations (optional, keep *.py if you want to version control)
**/migrations/*.pyc
**/migrations/__pycache__/
# ==========================================
# IDEs and editors
# ==========================================
.idea/
.vscode/
# ==========================================
# OS-specific files
# ==========================================
.DS_Store
Thumbs.db
ehthumbs.db
Desktop.ini
# ==========================================
# Environment variable files
# ==========================================
*.env
*.env.*
# ==========================================
# Profiles
# ==========================================
*.prof
# ==========================================
# Backup and swap files
# ==========================================
*~
*.bak
*.swp
*.swo
# ==========================================
# Docker (optional)
# ==========================================
**/Dockerfile
**/docker-compose*.yml
# ==========================================
# Celery (if used)
# ==========================================
celerybeat-schedule
celerybeat.pid
# ==========================================
# Sphinx docs
# ==========================================
docs/_build/
# ==========================================
# PyBuilder
# ==========================================
target/
# ==========================================
# Jupyter Notebook
# ==========================================
.ipynb_checkpoints/
# ==========================================
# pyenv
# ==========================================
.python-version