https://github.com/emad-elsaid/retro
Retrospective board for teams, minimal and clean
https://github.com/emad-elsaid/retro
agile hacktober retro
Last synced: about 1 month ago
JSON representation
Retrospective board for teams, minimal and clean
- Host: GitHub
- URL: https://github.com/emad-elsaid/retro
- Owner: emad-elsaid
- Created: 2020-10-16T15:09:53.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2025-01-05T20:49:16.000Z (4 months ago)
- Last Synced: 2025-01-18T09:34:14.673Z (3 months ago)
- Topics: agile, hacktober, retro
- Language: HTML
- Homepage:
- Size: 153 KB
- Stars: 20
- Watchers: 3
- Forks: 7
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Retro
=====A ruby HTTP server that allows users to create retrospective boards, and add
cards to it.### Light Mode
### Dark Mode
## How it works
- A ruby server with Sinatra
- CSS with Bulma
- Saves all data in memory
- User can create board with name, max votes per user, columns names
- When the server needs the user to have identity it'll redirect him to set his username and assign uuid
- The board has a form to create a new card in each column
- Users can edit and delete boards
- Users can vote on cards
- Timer at the top is just an iframe that refresh every couple seconds and can be changed by the creator of the board from the edit page## Running the server
Run the server script, it'll install the needed dependencies
```
bundle install
./server
```Using Docker
```
docker build -t retro .
docker run -d -p 3000:3000 retro
```Using Docker hub prebuilt image
```
docker run -d -p 3000:3000 emadelsaid/retro
```## Kubernetes deployment
Mohammed Ragab created a kubernetes helm chart to deploy it on your cluster. The repository is available here
https://github.com/ragoob/retro-helm-charts
## Deploy to Heroku
You can deploy it directly to Heroku, it must be one process as it's in memory storage
[](https://heroku.com/deploy)
## Guidelines
- No login needed
- No persistent data
- No Javascript
- Minimal dependencies## Development notes
To generate custom bulma CSS there is an executable script "./css" that will
download bulma unzip it and write two SCSS files that generate both light and
dark themes. use it in case you want to generate your own custome theme or
update bulma to newer version