├── .env.example ├── .github └── workflows │ └── build-docker.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── NIP32-COMPATIBILITY.md ├── README.md ├── USAGE.md ├── VERSION ├── config ├── policy.ts └── strfry.conf ├── logs └── .placeholder ├── resources ├── flowchart-nostr-filter-relay.png ├── flowchart-nostr-filter-relay.svg └── relay-setting-amethyst.jpg ├── scripts └── launch.sh └── strfry-db └── .placeholder /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrifat/nostr-filter-relay/HEAD/.env.example -------------------------------------------------------------------------------- /.github/workflows/build-docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrifat/nostr-filter-relay/HEAD/.github/workflows/build-docker.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrifat/nostr-filter-relay/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrifat/nostr-filter-relay/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrifat/nostr-filter-relay/HEAD/LICENSE -------------------------------------------------------------------------------- /NIP32-COMPATIBILITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrifat/nostr-filter-relay/HEAD/NIP32-COMPATIBILITY.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrifat/nostr-filter-relay/HEAD/README.md -------------------------------------------------------------------------------- /USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrifat/nostr-filter-relay/HEAD/USAGE.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.4.1 -------------------------------------------------------------------------------- /config/policy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrifat/nostr-filter-relay/HEAD/config/policy.ts -------------------------------------------------------------------------------- /config/strfry.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrifat/nostr-filter-relay/HEAD/config/strfry.conf -------------------------------------------------------------------------------- /logs/.placeholder: -------------------------------------------------------------------------------- 1 | placeholder -------------------------------------------------------------------------------- /resources/flowchart-nostr-filter-relay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrifat/nostr-filter-relay/HEAD/resources/flowchart-nostr-filter-relay.png -------------------------------------------------------------------------------- /resources/flowchart-nostr-filter-relay.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrifat/nostr-filter-relay/HEAD/resources/flowchart-nostr-filter-relay.svg -------------------------------------------------------------------------------- /resources/relay-setting-amethyst.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrifat/nostr-filter-relay/HEAD/resources/relay-setting-amethyst.jpg -------------------------------------------------------------------------------- /scripts/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atrifat/nostr-filter-relay/HEAD/scripts/launch.sh -------------------------------------------------------------------------------- /strfry-db/.placeholder: -------------------------------------------------------------------------------- 1 | placeholder --------------------------------------------------------------------------------