{
  "name": "python",
  "description": "Python backend development template with Django, Flask, and FastAPI support",
  "projectTypes": [
    "Python Application",
    "Django Application",
    "Flask Application",
    "FastAPI Application"
  ],
  "techStack": ["Python", "Django", "Flask", "FastAPI", "SQLAlchemy", "pytest"],
  "vscodeSettings": {
    "github.copilot.chat.codeGeneration.useInstructionFiles": true,
    "chat.promptFiles": true,
    "python.defaultInterpreterPath": "./venv/bin/python",
    "python.terminal.activateEnvironment": true,
    "python.testing.pytestEnabled": true,
    "python.testing.unittestEnabled": false,
    "python.testing.pytestArgs": ["."],
    "python.linting.enabled": true,
    "python.linting.pylintEnabled": false,
    "python.linting.flake8Enabled": true,
    "python.formatting.provider": "black",
    "python.sortImports.args": ["--profile", "black"]
  },
  "gitignore": [
    "__pycache__/",
    "*.py[cod]",
    "*$py.class",
    "*.so",
    ".Python",
    "build/",
    "develop-eggs/",
    "dist/",
    "downloads/",
    "eggs/",
    ".eggs/",
    "lib/",
    "lib64/",
    "parts/",
    "sdist/",
    "var/",
    "wheels/",
    "*.egg-info/",
    ".installed.cfg",
    "*.egg",
    "MANIFEST",
    "*.manifest",
    "*.spec",
    "pip-log.txt",
    "pip-delete-this-directory.txt",
    ".tox/",
    ".coverage",
    ".pytest_cache/",
    ".coverage.*",
    "coverage.xml",
    "*.cover",
    ".hypothesis/",
    ".env",
    ".venv",
    "env/",
    "venv/",
    "ENV/",
    "env.bak/",
    "venv.bak/",
    ".mypy_cache/",
    ".dmypy.json",
    "dmypy.json",
    "db.sqlite3",
    "*.log",
    "celerybeat-schedule",
    "celerybeat.pid",
    "staticfiles/",
    "media/"
  ]
}
