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
- Host: GitHub
- URL: https://github.com/dorianim/2gether.green
- Owner: dorianim
- License: agpl-3.0
- Created: 2022-11-19T00:17:15.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-11-23T13:10:18.000Z (about 3 years ago)
- Last Synced: 2025-04-14T12:52:33.450Z (10 months ago)
- Topics: enery, green, interhyp, react, rust, sqlite, typescript, vite, yarn
- Language: TypeScript
- Homepage: https://2gether.green
- Size: 15.4 MB
- Stars: 7
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.

# 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.