feat: Add scripts for sending admin and test notes via Nostr

- Introduce `send_admin_note.js` for sending community announcements to Nostr relays.
- Implement `send_test_note.js` for testing note sending with specified private key and relay URL.
- Enhance `NostrFeed.vue` to filter notes based on admin pubkeys and display appropriate titles and descriptions for different feed types.
- Update `Home.vue` to use the announcements feed type for the Nostr feed component.
This commit is contained in:
padreug 2025-07-02 18:12:02 +02:00
parent ee7eb461c4
commit 97db2a2fec
5 changed files with 314 additions and 54 deletions

View file

@ -1,6 +1,6 @@
<template>
<div class="container py-8">
<NostrFeed />
<NostrFeed feed-type="announcements" />
</div>
</template>