https://github.com/foso/showdown
Showdown is a selfhosted open source web app/server, you can use for remote planning poker® with scrum teams. Try at http://showdown.fly.dev/#/
https://github.com/foso/showdown
agile composeforweb composeweb heroku kotlin kotlin-multiplatform kotlinjs ktor planning-poker poker-planning scrum scrum-poker
Last synced: about 1 month ago
JSON representation
Showdown is a selfhosted open source web app/server, you can use for remote planning poker® with scrum teams. Try at http://showdown.fly.dev/#/
- Host: GitHub
- URL: https://github.com/foso/showdown
- Owner: Foso
- License: apache-2.0
- Created: 2020-06-13T18:49:03.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-03-13T02:09:26.000Z (about 2 years ago)
- Last Synced: 2025-03-18T12:03:09.793Z (about 1 month ago)
- Topics: agile, composeforweb, composeweb, heroku, kotlin, kotlin-multiplatform, kotlinjs, ktor, planning-poker, poker-planning, scrum, scrum-poker
- Language: Kotlin
- Homepage: http://showdown.fly.dev/#/
- Size: 5.29 MB
- Stars: 50
- Watchers: 2
- Forks: 9
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Showdown - Scrum Poker Web App
[](https://github.com/Foso/Showdown/blob/master/LICENSE)
[](http://makeapullrequest.com)
## Introduction 🙋♂️ 🙋
Showdown is a selfhosted web app and server, you can use for planning poker™. You can try it at http://showdown.fly.dev/#/### Show some :heart: and star the repo to support the project
[](https://github.com/Foso/Showdown) [](https://github.com/Foso/Showdown/fork) [](https://github.com/Foso/Showdown) [](https://twitter.com/jklingenberg_)
## 🎨 Features
* Automatic estimation timer for your estimations.
* Choose your estimation sequence:Select Settings>Change GameMode, on the page below you can select between:
**Fibonacci**, **T-Shirt**, **Modified Fibonacci**, **Power of 2** or you can choose **Custom** to add a custom sequence* [Room passwords](https://github.com/Foso/Showdown/wiki/Add-password-for-a-room)
* Auto reveal votes when all players have voted (Click the checkbox "AutoReveal Votes" under Settings)## 🗺️ Roadmap
- Your idea?# 🏠 Architecture
## 🛠️ Built With
### Kotlin
[]()### Project Structure
* server - A Ktor project with the server for Showdown
* web - The frontend of Showdown, written with Kotlin and Compose for Web
* shared - Shared module for server and web, which contains specific classes/interfaces like Error types or responses# Development
### Backend
* Run ShowdownApplicationKt to start the Ktor server### Frontend
#### Run development webpack server
* Run ./gradlew -t web:jsBrowserRun inside the project folder to start the development server for the Frontend. The server will run on port 3001. Open "localhost:3001" inside your browser.#### Build production frontend files
* Run the gradle task deployToServerAssets, it will build the webproject and copy the files to the server project# Deployment
### On Heroku
You can use this button [](https://heroku.com/deploy)### On Docker
Build image with
```bash
docker build -t foso-showdown .
```Launch container from image with
```bash
docker run -p 23567:23567 foso-showdown
```### On other server
You can download the jar from a release tag or when you want to build it yourself you can use the gradle task stage. It will build a .jar inside server/build/install/server-shadow/lib. You can run it with "java -jar $nameOfTheJarFile"## ✍️ Feedback
Feel free to send feedback on [Twitter](https://twitter.com/jklingenberg_) or [file an issue](https://github.com/foso/Showdown/issues/new). Feature requests and Pull Requests are always welcome.
## 📜 License
-------
This project is licensed under Apache License, Version 2.0
Copyright 2020 Jens Klingenberg
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License athttp://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.