Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/theycallhermax/wasteof.time

💸 An open-source wasteof.money frontend/backend implementation
https://github.com/theycallhermax/wasteof.time

implementation monorepo wasteof-money

Last synced: about 2 months ago
JSON representation

💸 An open-source wasteof.money frontend/backend implementation

Awesome Lists containing this project

README

        

# wasteof.time
An open-source wasteof.money frontend/backend implementation

## Running
### Backend
```console
cargo run -q -p backend
```
### Frontend
To run the frontend, you need `trunk`, and the WASM target added. See the [Yew tutorial](https://yew.rs/docs/tutorial) for more details.
```console
cd frontend
trunk watch
```

## Systemd Services
### Backend
```
[Unit]
Description=wasteof.time Backend

[Service]
Restart=on-failure
RestartSec=5s
ExecStart=cd wasteof.time; cargo run -q -p backend

[Install]
WantedBy=default.target
```
### Frontend
```
[Unit]
Description=wasteof.time Frontend

[Service]
Restart=on-failure
RestartSec=5s
ExecStart=cd wasteof.time/frontend; trunk serve

[Install]
WantedBy=default.target
```