d5377e94eb
Django backend that listens to the relay SSE global stream and dispatches APNs push notifications to subscribed iOS devices (TestFlight/sandbox).
27 lines
562 B
TOML
27 lines
562 B
TOML
[project]
|
|
name = "org-social-push"
|
|
version = "0.1.0"
|
|
description = "Push notification backend for the Org Social iOS app"
|
|
requires-python = ">=3.13"
|
|
dependencies = [
|
|
"django>=5.2.0",
|
|
"djangorestframework>=3.14.0",
|
|
"httpx[http2]>=0.27.0",
|
|
"PyJWT[crypto]>=2.8.0",
|
|
"requests>=2.31.0",
|
|
"uvicorn[standard]>=0.30.0",
|
|
"pytest>=7.0.0",
|
|
"pytest-django>=4.5.0",
|
|
]
|
|
|
|
[tool.ruff]
|
|
line-length = 100
|
|
target-version = "py313"
|
|
|
|
[tool.ruff.lint]
|
|
select = ["E", "F", "W", "I"]
|
|
ignore = []
|
|
|
|
[tool.ruff.lint.isort]
|
|
known-first-party = ["app", "core"]
|