Skip to content

Latest commit

 

History

History
57 lines (46 loc) · 1.18 KB

README.md

File metadata and controls

57 lines (46 loc) · 1.18 KB

Pigeon Nest

A simple Nostr relay proxy service

How to Start the Service (Development)

  1. Install Rust (via rustup if not already installed).
  2. Copy the .env.example file to .env and adjust configurations if needed:
    cp .env.example .env
  3. Run the service:
    cargo run

How to Deploy the Service

  1. Build the project for production:

    cargo build --release
  2. Copy the executable from target/release/ to your production environment.

  3. Create a systemd service unit file (e.g., /etc/systemd/system/pigeon-nest.service):

    [Unit]
    Description=Pigeon Nest Service
    After=network.target
    
    [Service]
    ExecStart=/path/to/pigeon-nest
    Restart=always
    RestartSec=5
    User=YOUR_USER_NAME
    Environment=RUST_LOG=info
    Environment=PORT=3000
    # The actual endpoint you expose to the public
    Environment=ENDPOINT=ws://localhost:3000
    
    [Install]
    WantedBy=multi-user.target
  4. Enable and start the service:

    sudo systemctl enable pigeon-nest
    sudo systemctl start pigeon-nest
  5. Verify the service status:

    sudo systemctl status pigeon-nest

License

MIT