Loading repository data…
Loading repository data…
b3mug1 / repository
Production-ready Link Tracker API built with FastAPI: track updates from GitHub, Stack Overflow, RSS, blogs, and web pages with JWT auth, background checks, and extensible notifications.
A transparent discovery signal based on current public GitHub metadata.
This score does not audit code, security, maintainers, documentation quality, or suitability. Verify the repository and its current documentation before adoption.
Production-ready FastAPI backend for tracking updates from resources (GitHub repositories, Stack Overflow questions, RSS feeds, blogs, docs pages, and generic websites) with pluggable providers and notification channels.
cp .env.example .env
docker compose up --build
python -m venv .venv
source .venv/bin/activate # or .venv\\Scripts\\activate on Windows
pip install -e .[dev]
alembic upgrade head
uvicorn app.main:app --reload
pytest
app/services/providers/*: provider detection and update extraction logicapp/services/notifiers/*: channel strategy implementationsapp/services/checker.py: periodic link check orchestrationapp/api/v1/endpoints/*: REST endpointsapp/models/*: SQLAlchemy modelsapp/schemas/*: Pydantic request/response models