We can only become green together! It's our mission to simplify this process by providing a platform for communities to invest into local renewable energy source projects.
Using docker-compose
:
version: "3"
services:
money-balancer:
image: ghcr.io/dorianim/2gether.green
restart: unless-stopped
ports:
- 8000:8000
volumes:
- ./data:/data
Using docker
:
docker run -p8000:8000 -v $(pwd)/data:/data ghcr.io/dorianim/2gether.green
You can then access 2gether.green on http://localhost:8000
.
You need cargo
and yarn
installed on your system. You can build everything using
cargo build --release
This will create a static binary in ./target/release/together-green
which you can run.