An open API service indexing awesome lists of open source software.

https://github.com/dorianim/2gether.green

Our project at HackaTUM 2022, winner of the Interhyp challange
https://github.com/dorianim/2gether.green

enery green interhyp react rust sqlite typescript vite yarn

Last synced: 3 months ago
JSON representation

Our project at HackaTUM 2022, winner of the Interhyp challange

Awesome Lists containing this project

README

          


2gether.green (hackaTUM Winner 2022)









#### [Read the devpost here!](https://devpost.com/software/2gethergreen)

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](https://user-images.githubusercontent.com/30153207/202896189-4e9064a5-2c3f-4509-b154-e4ccaea96b1d.png)

# Usage

Using `docker-compose`:

```yaml
version: "3"
services:
money-balancer:
image: ghcr.io/dorianim/2gether.green
restart: unless-stopped
ports:
- 8000:8000
volumes:
- ./data:/data
```

Using `docker`:

```bash
docker run -p8000:8000 -v $(pwd)/data:/data ghcr.io/dorianim/2gether.green
```

You can then access 2gether.green on [`http://localhost:8000`](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.