likwid/backend/.sqlx/query-e1a40a1cc7c618d815ebfaec6751ab19146ab76519020ce783bc916e64155a14.json
Marco Allegretti 910a6465f2 Initial commit: Likwid governance platform
- 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
2026-01-27 17:21:58 +01:00

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"
}