mirror of
https://codeberg.org/likwid/likwid.git
synced 2026-02-09 21:13:09 +00:00
23 lines
625 B
Text
23 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)
|