Add SEED_DEMO_DATA environment variable to control demo data population, enhance setup wizard with welcome screen and theme toggle, add smooth animations for wizard transitions, improve dashboard endpoint to return structured objects for last_syncs and faulty_nodes instead of raw models, implement comprehensive error handling in cluster sync with failed status tracking and audit logging, fix Proxmox provider
15 lines
501 B
Bash
15 lines
501 B
Bash
PROJECT_NAME=NexaFabric
|
|
ENVIRONMENT=development
|
|
API_HOST=0.0.0.0
|
|
API_PORT=8000
|
|
DATABASE_URL=postgresql+psycopg://nexafabric:nexafabric@postgres:5432/nexafabric
|
|
REDIS_URL=redis://redis:6379/0
|
|
JWT_SECRET=change-this-to-a-long-random-secret
|
|
JWT_ACCESS_TOKEN_MINUTES=15
|
|
JWT_REFRESH_TOKEN_DAYS=14
|
|
TOKEN_ENCRYPTION_KEY=change-this-fernet-key-before-production
|
|
CORS_ORIGINS=http://localhost:5173,http://localhost:8080
|
|
DEMO_ADMIN_PASSWORD=ChangeMe_UseEnvInstead
|
|
SEED_DEMO_DATA=false
|
|
VITE_API_BASE_URL=/api/v1
|