grain/readme.md

74 lines
2.0 KiB
Markdown
Raw Normal View History

2024-07-22 19:33:54 +00:00
# GRAIN 🌾
2024-07-20 00:38:35 +00:00
**Go Relay Archetecture for Implementing Nostr**
2024-07-19 22:07:04 +00:00
2024-07-22 19:33:54 +00:00
GRAIN is an open-source Nostr relay implementation written in Go. This project aims to provide a robust and efficient Nostr relay that currently supports the NIP-01 of the nostr protocol.
2024-07-19 22:07:04 +00:00
## Features
2024-07-23 18:32:28 +00:00
- **NIP-01 Protocol Support**: GRAIN (nearly)fully supports the NIP-01 for WebSocket communication.
2024-07-19 22:07:04 +00:00
- **Event Processing**: Handles events of kind 0 (user metadata) and kind 1 (text note).
2024-07-19 23:06:38 +00:00
- **MongoDB 🍃**: Utilizes MongoDB to store and manage events efficiently.
2024-07-19 22:07:04 +00:00
- **Scalability**: Built with Go, ensuring high performance and scalability.
- **Open Source**: Licensed under the MIT License, making it free to use and modify.
2024-07-23 18:32:28 +00:00
## Configuration
2024-07-19 22:07:04 +00:00
2024-07-22 19:33:54 +00:00
Configuration options can be set through environment variables or a configuration file.
2024-07-19 22:07:04 +00:00
2024-07-22 19:33:54 +00:00
There is an example config in this repo. Copy the example config to config.yml to get started
2024-07-19 22:07:04 +00:00
2024-07-22 19:33:54 +00:00
```bash
cp config.example.yml config.yml
2024-07-19 22:07:04 +00:00
```
### WebSocket Endpoints
- Connect: / - Clients can connect to this endpoint to start a WebSocket session.
- Publish Event: Send events of kind 0 (user metadata) or kind 1 (text note) to the relay.
2024-07-22 19:33:54 +00:00
### TODO
- Handle more kinds
2024-07-23 18:32:28 +00:00
- Fix Request Query to handle and serve unhandled events by kind
2024-07-22 19:33:54 +00:00
- create whitelist/blacklist functionality
for:
- valid nip05 domain
- pubkey
- npub
- kind int
- kind 1 wordlist
2024-07-23 18:32:28 +00:00
- Rate limit Events.
- by kind
- configurable in config.yml
2024-07-22 19:33:54 +00:00
2024-07-19 22:07:04 +00:00
### Development
To contribute to GRAIN, follow these steps:
1. Fork the repository.
2024-07-22 19:33:54 +00:00
2. Make your changes.
3. Commit your changes:
2024-07-19 22:07:04 +00:00
```sh
git commit -m "Description of changes"
```
2024-07-22 19:33:54 +00:00
4. Push to the repo:
2024-07-19 22:07:04 +00:00
```sh
2024-07-22 19:33:54 +00:00
git push
2024-07-19 22:07:04 +00:00
```
2024-07-22 19:33:54 +00:00
5. Create a Pull Request.
2024-07-19 22:07:04 +00:00
### License
This project is Open Source and licensed under the MIT License. See the [LICENSE](license) file for details.
### Acknowledgments
Special thanks to the Nostr community for their continuous support and contributions.
Feel free to reach out with any questions or issues you encounter while using GRAIN. Happy coding!