diff --git a/freekake_api/.gitignore b/freekake_api/.gitignore new file mode 100644 index 0000000..5093ffb --- /dev/null +++ b/freekake_api/.gitignore @@ -0,0 +1,129 @@ +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class +**/__pycache__/ +**/*.py[cod] + +# C extensions +*.so + +# Virtual environment +.env +.venv +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ + +# pipenv +Pipfile.lock + +# Poetry +poetry.lock + +# PyInstaller +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.nox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +*.py,cover +.hypothesis/ +.pytest_cache/ + +# Django stuff: +*.log +local_settings.py +db.sqlite3 +db.sqlite3-journal +media/ +staticfiles/ + +# Translations +*.mo + +# Django migrations +**/migrations/*.pyc +**/migrations/__pycache__/ +**/migrations/*.py + +# PyCharm +.idea/ + +# VS Code +.vscode/ + +# MyPy +.mypy_cache/ +.dmypy.json +dmypy.json + +# Pyre type checker +.pyre/ + +# Profiles +.prof + +# Backup files +*~ +*.bak +*.swp +*.swo + +# macOS +.DS_Store + +# Windows +Thumbs.db +ehthumbs.db +Desktop.ini + +# dotenv environment variables +*.env +*.env.* + +# coverage reports +*.lcov + +# Docker +**/Dockerfile +**/docker-compose*.yml + +# Build +build/ +dist/ +*.egg-info/ +.eggs/ + +# If you use celery +celerybeat-schedule +celerybeat.pid + +# If you use Sphinx +docs/_build/ + +# PyBuilder +target/ + +# Jupyter Notebook +.ipynb_checkpoints + +# pyenv +.python-version + +# Environments +.env/