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