https://github.com/urholaukkarinen/planpoker
Planning poker web application built with Yew, Actix Web & Websockets
https://github.com/urholaukkarinen/planpoker
Last synced: 27 days ago
JSON representation
Planning poker web application built with Yew, Actix Web & Websockets
- Host: GitHub
- URL: https://github.com/urholaukkarinen/planpoker
- Owner: urholaukkarinen
- License: mit
- Created: 2021-06-20T12:01:48.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-06-20T12:07:22.000Z (almost 4 years ago)
- Last Synced: 2025-02-12T12:57:25.391Z (3 months ago)
- Language: Rust
- Size: 30.3 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Planning Poker
Planning poker web application built with Yew, Actix Web & Websockets.
I started this project to learn web application development using Rust.
The most important basic features have been implemented, but __UI is non-existent__.You can create a room where others can join via a link. Users can place a vote,
and once everyone has voted, the admin can reveal the votes. An average value is calculated from the votes.# Setup
Set up Trunk according to [Yew Trunk Template
](https://github.com/yewstack/yew-trunk-minimal-template).
```bash
rustup target add wasm32-unknown-unknown
cargo install trunk wasm-bindgen-cli
```# Usage
```bash
# Start the backend
cd crates/backend
cargo run# In another terminal instance, start the frontend
cd crates/frontend
trunk serve
```