mirror of
https://codeberg.org/likwid/likwid.git
synced 2026-02-09 21:13: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
15 lines
632 B
JSON
15 lines
632 B
JSON
{
|
|
"db_name": "PostgreSQL",
|
|
"query": "\n INSERT INTO community_plugins (community_id, plugin_id, settings, is_active)\n SELECT $1, p.id, '{}'::jsonb, true\n FROM plugins p\n WHERE p.is_active = true\n AND p.name = ANY($2)\n ON CONFLICT (community_id, plugin_id)\n DO UPDATE SET is_active = EXCLUDED.is_active\n ",
|
|
"describe": {
|
|
"columns": [],
|
|
"parameters": {
|
|
"Left": [
|
|
"Uuid",
|
|
"TextArray"
|
|
]
|
|
},
|
|
"nullable": []
|
|
},
|
|
"hash": "4aa9e85bb2280a67f94914b3de749b262b16223d467464079ce36509b857f306"
|
|
}
|