diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..60f633f --- /dev/null +++ b/.gitignore @@ -0,0 +1,64 @@ +# Python +__pycache__/ +*.py[cod] +*$pyclass$ +*.so +*.egg-info/ +dist/ +build/ +*.egg + +# Virtual Environment +venv/ +ENV/ +env/ +.venv + +# Flask +flask.db +instance/ + +# Database +*.db +*.sqlite3 +*.sqlite + +# Alembic migrations +migrations/versions/*.py_bak +migrations/versions/# + +# IDE +.vscode/ +.idea/ +*.swp +*.swo +*~ + +# OS +.DS_Store +Thumbs.db +*.log + +# Environment variables +.env +.env.local +config_local.py + +# Logs +*.log + +# Coverage +htmlcov/ +.coverage +.coverage.* +.pytest_cache/ +.tox/ + +# Jupyter Notebook +.ipynb_checkpoints + +# macOS +.DS_Store + +# Windows +desktop.ini \ No newline at end of file