robosats/nodeapp
KoalaSat 0e115e06b1
Refactor Webpacks (#1212)
refactor webpacks
2024-04-03 05:55:42 +00:00
..
assets Fix all files with pre-commit 2022-10-25 11:04:12 -07:00
coordinators Add coordinator: BitcoinVeneto 2024-03-02 10:57:09 +00:00
.dockerignore Fix use programatic colors for map marker 2023-10-19 02:35:24 -07:00
basic.html Refactor Webpacks (#1212) 2024-04-03 05:55:42 +00:00
docker-compose-example.yml Fix f2f style and self-hosted assets 2023-10-17 05:21:18 -07:00
docker-compose.yml Refactor contexts and models (#921) 2023-12-02 10:40:59 +00:00
Dockerfile Refactor contexts and models (#921) 2023-12-02 10:40:59 +00:00
nginx.conf Add coordinator: BitcoinVeneto 2024-03-02 10:57:09 +00:00
pro.html Refactor Webpacks (#1212) 2024-04-03 05:55:42 +00:00
README.md Simplify frontend/client dev setup, shrink nodeapp 2023-05-12 04:07:56 -07:00
robosats-client.sh Add coordinator: BitcoinVeneto 2024-03-02 10:57:09 +00:00

RoboSats client app for sovereign nodes

RoboSats app for sovereign nodes ( Umbrel, Citadel, Start9 ...). This app serves the RoboSats frontend app directly from your own node and redirects all API requests to RoboSats P2P market coordinator through your node's TOR proxy.

At the moment it has no special integration with your local lightning wallet (e.g. LND). This can be achieved easily by installing a WebLN compatible extension in your browser (e.g. getAlby).

How it works

The container launches two processes: 1) A set of socat that will expose RoboSats coordinators API over HTTP on localhost:81 using the docker orchestration TOR socks proxy and 2) Nginx, used to direct every request where needed and serve the client app locally.

Docker compose example

You can run the client locally with the provided example orchestration. It has both, a TOR proxy container and the robosats client. docker-compose -f docker-compose-example.yml up Then just visit http://localhost:12596

Why host your own RoboSats client

Advantages over a full over-the-internet RoboSats experience:

  1. Dramatically faster load times.
  2. Safer: you control what RoboSats client app you run.
  3. Access RoboSats safely from any browser / device. No need to use TOR if you are on your local network or using VPN: your node backend handles the torification needed for anonymization.
  4. Allows control over what P2P market coordinator you connect to (defaults to robosats6tkf3eva7x2voqso3a5wcorsnw34jveyxfqi2fu7oyheasid.onion)

Future upgrades

  1. Increase availability by processing API requests via I2P when TOR is not available.