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
22 lines
625 B
Text
22 lines
625 B
Text
# Demo Environment Configuration
|
|
# Copy to .env.demo and optionally customize
|
|
|
|
# Database (separate from production)
|
|
POSTGRES_USER=likwid_demo
|
|
POSTGRES_PASSWORD=demo_secret_change_me
|
|
POSTGRES_DB=likwid_demo
|
|
DB_PORT=5433
|
|
|
|
# Backend
|
|
JWT_SECRET=demo_jwt_secret_not_for_production
|
|
BACKEND_PORT=3001
|
|
|
|
# Frontend
|
|
FRONTEND_PORT=4322
|
|
API_BASE=http://localhost:3001
|
|
|
|
# Demo mode is always enabled for this deployment
|
|
# This enables:
|
|
# - Demo accounts (contributor, moderator, observer) with password: demo123
|
|
# - Pre-seeded communities, proposals, and governance data
|
|
# - Restricted destructive actions (cannot delete core demo data)
|