Mirror of https://github.com/roostorg/osprey github.com/roostorg/osprey
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

IDE Setup Recommendations#

VS Code#

Install these extensions for the best development experience:

  • Python (Microsoft)
  • Ruff (Astral Software)
  • MyPy Type Checker (Microsoft)

Settings (add to .vscode/settings.json):

{
  "python.defaultInterpreterPath": ".venv/bin/python",
  "ruff.enable": true,
  "ruff.organizeImports": true,
  "python.analysis.typeCheckingMode": "basic"
}