Skip to content

Our project at HackaTUM 2022, winner of the Interhyp challange

Notifications You must be signed in to change notification settings

dorianim/2gether.green

Repository files navigation

2gether.green (hackaTUM Winner 2022)

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.

image

Usage

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.

Development

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.