xmr-remote-nodes/README.md

70 lines
3.2 KiB
Markdown
Raw Normal View History

# XMR Remote Nodes
[![Test](https://github.com/ditatompel/xmr-remote-nodes/actions/workflows/test.yml/badge.svg)](https://github.com/ditatompel/xmr-remote-nodes/actions/workflows/test.yml)
2024-06-10 16:44:01 +00:00
[![BUild](https://github.com/ditatompel/xmr-remote-nodes/actions/workflows/build.yml/badge.svg)](https://github.com/ditatompel/xmr-remote-nodes/actions/workflows/build.yml)
2024-06-11 07:53:15 +00:00
[![Release Binaries](https://github.com/ditatompel/xmr-remote-nodes/actions/workflows/release.yml/badge.svg)](https://github.com/ditatompel/xmr-remote-nodes/actions/workflows/release.yml)
[![Go Report Card](https://goreportcard.com/badge/github.com/ditatompel/xmr-remote-nodes)](https://goreportcard.com/report/github.com/ditatompel/xmr-remote-nodes)
Source code of [https://xmr.ditatompel.com](https://xmr.ditatompel.com), a website that helps you monitor your favourite Monero remote nodes.
2024-05-04 19:20:54 +00:00
> :warning: :construction: This project is still freaking 0.x.x :construction:,
> If you want to use it on your server, please use it with caution.
2024-05-31 11:24:45 +00:00
## How does it work?
Apart from CPU architecture type, you can build two types of binaries from this project: a **server** and a **client**.
The **clients** is used to fetch node information given by the server. First, it will ask the server which node to fetch. Then, it will fetch the information and report back to the server.
The **server** serves an embedded Svelte static site for the Web UI. It also serves the `/api` endpoint that is used by the clients and the Web UI itself.
2024-05-04 19:20:54 +00:00
## Requirements
To build the executable binaries, you need:
2024-05-28 03:03:29 +00:00
- Go >= 1.22
- NodeJS >= 20
### Server & Prober requirements
- Linux Machines (AMD64 or ARM64)
### Server requirements
2024-05-28 03:03:29 +00:00
- MySQL/MariaDB
- [GeoIP Database](https://dev.maxmind.com/geoip/geoip2/geolite2/) (optional). Place it to `./assets/geoip`, see [./internal/geo/ip.go](./internal/geo/ip.go).
2024-05-04 19:20:54 +00:00
## Installation
2024-05-04 19:20:54 +00:00
### For initial server setup:
1. Download [GeoIP Database](https://dev.maxmind.com/geoip/geoip2/geolite2/) and place it to `./assets/geoip`. (see [./internal/geo/ip.go](./internal/geo/ip.go)).
2. Pepare your MySQL/MariaDB.
3. Copy `.env.example` to `.env` and edit it to match with server environment.
4. Build the binary with `make server` (or `make build` to build both **server** and **client** binaries).
5. Run the service with `./bin/xmr-nodes-server-linux-<YOUR_CPU_ARCH> serve`.
Systemd example: [./deployment/init/xmr-nodes-server.service](./deployment/init/xmr-nodes-server.service).
### For initial prober setup:
1. Create API key for prober
2. Copy `.env.example` to `.env` and edit it to match with prober environment.
3. Build the binary with `make client` (or `make build` to build both **server** and **client** binaries).
4. Run the service with `./bin/xmr-nodes-client-linux-<YOUR_CPU_ARCH> probe`.
Systemd example: [xmr-nodes-prober.service](./deployment/init/xmr-nodes-prober.service) and [xmr-nodes-prober.timer](./deployment/init/xmr-nodes-prober.timer).
2024-05-31 11:24:45 +00:00
## Development and Deployment
See the [Makefile](./Makefile).
## Similar Projects
- [lalanza808/monero.fail](https://github.com/lalanza808/monero.fail)
- [cake-tech/upptime-monerocom](https://github.com/cake-tech/upptime-monerocom)
## License
This project is licensed under [GLWTPL](./LICENSE).