Source code of https://xmr.ditatompel.com, a website that helps you monitor your favourite Monero remote nodes.
Find a file
ditatompel d99f8583c1
Open ASN link to new tab
This also remove unused global `dashboard-card` css class.
2024-05-20 02:34:42 +07:00
cmd Remove admin login logout handler and endpoints #2 2024-05-18 20:27:30 +07:00
frontend Open ASN link to new tab 2024-05-20 02:34:42 +07:00
handler Remove admin login logout handler and endpoints #2 2024-05-18 20:27:30 +07:00
internal Ability to list cron from CLI #2 2024-05-18 20:13:00 +07:00
tools Update deployment example (CPU arch aware) #3 2024-05-18 18:09:36 +07:00
.air.toml Build server tags in Makefile & air config #3 2024-05-18 18:05:53 +07:00
.editorconfig Copying my other project structure to this project 2024-05-04 00:11:56 +07:00
.env.example Using slog for logging level 2024-05-13 18:40:01 +07:00
.gitattributes Initial commit 2024-05-04 00:10:33 +07:00
.gitignore Adding GeoIP support 2024-05-05 02:20:54 +07:00
go.mod Avoid naming module using a domain name pattern 2024-05-08 21:35:04 +07:00
go.sum Adding GeoIP support 2024-05-05 02:20:54 +07:00
LICENSE Initial commit 2024-05-04 00:10:33 +07:00
main.go Separating client and server package #3 2024-05-18 17:59:54 +07:00
Makefile Build server tags in Makefile & air config #3 2024-05-18 18:05:53 +07:00
README.md Build server tags in Makefile & air config #3 2024-05-18 18:05:53 +07:00
server.go Set ./cmd/server/admin.go as entrypoint to server build 2024-05-18 18:42:32 +07:00

XMR Remote Nodes

Source code of https://xmr.ditatompel.com, a website that helps you monitor your favourite Monero remote nodes.

Requirements

Server & Prober requirements

  • Go >= 1.22
  • Linux Machine (AMD64 or ARM64)

Server requirements

Installation

For initial server setup:

  1. Download GeoIP Database and place it to ./assets/geoip. (see ./internal/repo/geoip.go).
  2. Copy .env.example to .env and edit it to match with server environment.
  3. Build the binary with make build.
  4. Run the service with ./bin/xmr-nodes-server-linux-<YOUR_CPU_ARCH> serve.

To create admin user (for creating prober API key from Web-UI, execute ./bin/xmr-nodes-server-linux-<YOUR_CPU_ARCH> admin create).

Systemd example: ./tools/resources/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 build.
  4. Run the service with ./bin/xmr-nodes-client-linux-<YOUR_CPU_ARCH> probe.

Systemd example: xmr-nodes-prober.service and xmr-nodes-prober.timer.