An Estimation board for teams. non-persistent memory based. Fast and simple.
- A C server
- CSS with Bulma
- Saves all data in memory
- User can create board with votes options.
- When the server needs the user to have identity it'll redirect him to set his username
- When the board votes changes it'll refresh automatically
- Users can edit boards
- Users can vote on cards
- Users that didn't vote yet are not allowed to show the votes results
Run the server script, it'll install the needed dependencies
make run
- No login needed
- No persistent data
- No Javascript (one line to refresh board when updated)
- Minimal dependencies
- templates are html files in
viewsdirectory - C code between
<%and%>will be executed - C code between
<%=and%>will be executed and is expected to return a C stringchar *which will be printed - C code between
<%-and%>is similar to<%=and%>and will free the string memory - every view file will be compiled to a C function with the name
views_<ile_name>_html - every view function takes
void *inputargument and returnschar *
