mirror of
https://codeberg.org/likwid/likwid.git
synced 2026-02-10 13:33:09 +00:00
- Backend: Rust/Axum with PostgreSQL, plugin architecture - Frontend: Astro with polished UI - Voting methods: Approval, Ranked Choice, Schulze, STAR, Quadratic - Features: Liquid delegation, transparent moderation, structured deliberation - Documentation: User and admin guides in /docs - Deployment: Docker/Podman compose files for production and demo - Demo: Seeded data with 3 communities, 13 users, 7 proposals License: AGPLv3
58 lines
1.4 KiB
JSON
58 lines
1.4 KiB
JSON
{
|
|
"db_name": "PostgreSQL",
|
|
"query": "SELECT \n voting_method,\n proposals_using_method,\n total_votes_cast,\n avg_turnout::float8 AS turnout,\n avg_time_to_decide_hours::float8 AS avg_time,\n decisive_results,\n close_results\n FROM voting_method_analytics\n WHERE community_id = $1\n ORDER BY proposals_using_method DESC",
|
|
"describe": {
|
|
"columns": [
|
|
{
|
|
"ordinal": 0,
|
|
"name": "voting_method",
|
|
"type_info": "Varchar"
|
|
},
|
|
{
|
|
"ordinal": 1,
|
|
"name": "proposals_using_method",
|
|
"type_info": "Int4"
|
|
},
|
|
{
|
|
"ordinal": 2,
|
|
"name": "total_votes_cast",
|
|
"type_info": "Int4"
|
|
},
|
|
{
|
|
"ordinal": 3,
|
|
"name": "turnout",
|
|
"type_info": "Float8"
|
|
},
|
|
{
|
|
"ordinal": 4,
|
|
"name": "avg_time",
|
|
"type_info": "Float8"
|
|
},
|
|
{
|
|
"ordinal": 5,
|
|
"name": "decisive_results",
|
|
"type_info": "Int4"
|
|
},
|
|
{
|
|
"ordinal": 6,
|
|
"name": "close_results",
|
|
"type_info": "Int4"
|
|
}
|
|
],
|
|
"parameters": {
|
|
"Left": [
|
|
"Uuid"
|
|
]
|
|
},
|
|
"nullable": [
|
|
false,
|
|
false,
|
|
false,
|
|
null,
|
|
null,
|
|
false,
|
|
false
|
|
]
|
|
},
|
|
"hash": "bfdd9a0dcf20053b8d10c946955530253502e9c624b6586b358660df9d1ec8cc"
|
|
}
|