Initial scaffold for jirorian

uv project with FastAPI + boto3 + pynostr, wired to uv2nix flake.
Stub modules for NIP-98 auth, NIP-96 upload endpoint, R2 presigned
URLs, Nostr relay subscription, and SQLite whitelist/rate-limit store.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
randogoth 2026-06-07 17:28:06 +03:00
commit a56195620a
10 changed files with 1563 additions and 0 deletions

18
pyproject.toml Normal file
View file

@ -0,0 +1,18 @@
[project]
name = "jirorian"
version = "0.1.0"
description = "Nostr-native R2 image upload API"
requires-python = ">=3.12"
dependencies = [
"fastapi[standard]>=0.115.0",
"boto3>=1.35.0",
"pynostr>=0.6.2",
"websockets>=13.0",
]
[project.scripts]
jirorian = "jirorian.main:main"
[build-system]
requires = ["uv_build>=0.11.0,<0.12.0"]
build-backend = "uv_build"