mirror of
https://codeberg.org/likwid/likwid.git
synced 2026-02-10 05:23: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
64 lines
1.6 KiB
JSON
64 lines
1.6 KiB
JSON
{
|
|
"db_name": "PostgreSQL",
|
|
"query": "SELECT \n proposals_in_pipeline,\n proposals_needing_review,\n proposals_in_voting,\n decisions_made,\n avg_decision_time_hours::float8 AS avg_time,\n quorum_achievement_rate::float8 AS quorum_rate,\n stalled_proposals,\n bottleneck_phase\n FROM decision_load_metrics\n WHERE community_id = $1\n ORDER BY period_end DESC\n LIMIT 1",
|
|
"describe": {
|
|
"columns": [
|
|
{
|
|
"ordinal": 0,
|
|
"name": "proposals_in_pipeline",
|
|
"type_info": "Int4"
|
|
},
|
|
{
|
|
"ordinal": 1,
|
|
"name": "proposals_needing_review",
|
|
"type_info": "Int4"
|
|
},
|
|
{
|
|
"ordinal": 2,
|
|
"name": "proposals_in_voting",
|
|
"type_info": "Int4"
|
|
},
|
|
{
|
|
"ordinal": 3,
|
|
"name": "decisions_made",
|
|
"type_info": "Int4"
|
|
},
|
|
{
|
|
"ordinal": 4,
|
|
"name": "avg_time",
|
|
"type_info": "Float8"
|
|
},
|
|
{
|
|
"ordinal": 5,
|
|
"name": "quorum_rate",
|
|
"type_info": "Float8"
|
|
},
|
|
{
|
|
"ordinal": 6,
|
|
"name": "stalled_proposals",
|
|
"type_info": "Int4"
|
|
},
|
|
{
|
|
"ordinal": 7,
|
|
"name": "bottleneck_phase",
|
|
"type_info": "Varchar"
|
|
}
|
|
],
|
|
"parameters": {
|
|
"Left": [
|
|
"Uuid"
|
|
]
|
|
},
|
|
"nullable": [
|
|
false,
|
|
false,
|
|
false,
|
|
false,
|
|
null,
|
|
null,
|
|
false,
|
|
true
|
|
]
|
|
},
|
|
"hash": "88ca29971ada21e0ff2b92315e39c7aefbd81215862c5c7149e2dbca93c5d1fe"
|
|
}
|