Plateforme de decisions collectives pour Duniter/G1. Backend FastAPI async + PostgreSQL (14 tables, 8 routers, 6 services, moteur de vote avec formule d'inertie WoT/Smith/TechComm). Frontend Nuxt 4 + Nuxt UI v3 + Pinia (9 pages, 5 stores). Infrastructure Docker + Woodpecker CI + Traefik. Documentation technique et utilisateur (15 fichiers). Seed : Licence G1, Engagement Forgeron v2.0.0, 4 protocoles de vote. 30 tests unitaires (formules, mode params, vote nuance) -- tous verts. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
24 lines
584 B
Plaintext
24 lines
584 B
Plaintext
# PostgreSQL
|
|
POSTGRES_DB=glibredecision
|
|
POSTGRES_USER=glibredecision
|
|
POSTGRES_PASSWORD=change-me-in-production
|
|
DATABASE_URL=postgresql+asyncpg://glibredecision:change-me-in-production@localhost:5432/glibredecision
|
|
|
|
# Backend
|
|
SECRET_KEY=change-me-in-production-with-a-real-secret-key
|
|
DEBUG=true
|
|
CORS_ORIGINS=["http://localhost:3002"]
|
|
|
|
# Duniter V2 RPC
|
|
DUNITER_RPC_URL=wss://gdev.p2p.legal/ws
|
|
|
|
# IPFS
|
|
IPFS_API_URL=http://localhost:5001
|
|
IPFS_GATEWAY_URL=http://localhost:8080
|
|
|
|
# Frontend
|
|
NUXT_PUBLIC_API_BASE=http://localhost:8002/api/v1
|
|
|
|
# Docker / Production
|
|
DOMAIN=glibredecision.org
|