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
40 lines
912 B
JSON
40 lines
912 B
JSON
{
|
|
"db_name": "PostgreSQL",
|
|
"query": "SELECT snapshot_date, total_members, active_members, votes_cast\n FROM participation_snapshots\n WHERE community_id = $1\n ORDER BY snapshot_date DESC\n LIMIT 365",
|
|
"describe": {
|
|
"columns": [
|
|
{
|
|
"ordinal": 0,
|
|
"name": "snapshot_date",
|
|
"type_info": "Date"
|
|
},
|
|
{
|
|
"ordinal": 1,
|
|
"name": "total_members",
|
|
"type_info": "Int4"
|
|
},
|
|
{
|
|
"ordinal": 2,
|
|
"name": "active_members",
|
|
"type_info": "Int4"
|
|
},
|
|
{
|
|
"ordinal": 3,
|
|
"name": "votes_cast",
|
|
"type_info": "Int4"
|
|
}
|
|
],
|
|
"parameters": {
|
|
"Left": [
|
|
"Uuid"
|
|
]
|
|
},
|
|
"nullable": [
|
|
false,
|
|
false,
|
|
false,
|
|
false
|
|
]
|
|
},
|
|
"hash": "e1a40a1cc7c618d815ebfaec6751ab19146ab76519020ce783bc916e64155a14"
|
|
}
|