Structure: - control-plane/: Registries, SIMCO directives, CI/CD templates - projects/: Gamilit, ERP-Suite, Trading-Platform, Betting-Analytics - shared/: Libs catalog, knowledge-base Key features: - Centralized port, domain, database, and service registries - 23 SIMCO directives + 6 fundamental principles - NEXUS agent profiles with delegation rules - Validation scripts for workspace integrity - Dockerfiles for all services - Path aliases for quick reference 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
47 lines
1.2 KiB
Plaintext
47 lines
1.2 KiB
Plaintext
# GAMILIT Platform - Environment Variables Template
|
|
# Copy this file to .env and fill in your values
|
|
|
|
# ==================== APPLICATION ====================
|
|
VITE_APP_NAME=GAMILIT Platform
|
|
VITE_APP_VERSION=1.0.0
|
|
VITE_APP_ENV=development
|
|
VITE_ENV=development
|
|
|
|
# ==================== API CONFIGURATION ====================
|
|
VITE_API_URL=http://localhost:3006/api
|
|
VITE_API_TIMEOUT=30000
|
|
|
|
# WebSocket
|
|
VITE_WS_URL=ws://localhost:3006
|
|
|
|
# ==================== AUTHENTICATION ====================
|
|
# Note: JWT_SECRET should be on backend only. This is for reference.
|
|
# VITE_JWT_SECRET should NOT be exposed in production
|
|
VITE_JWT_EXPIRATION=7d
|
|
|
|
# ==================== FEATURE FLAGS ====================
|
|
VITE_ENABLE_GAMIFICATION=true
|
|
VITE_ENABLE_SOCIAL_FEATURES=true
|
|
VITE_ENABLE_ANALYTICS=false
|
|
VITE_ENABLE_DEBUG=true
|
|
VITE_ENABLE_STORYBOOK=true
|
|
VITE_MOCK_API=false
|
|
|
|
# ==================== EXTERNAL SERVICES ====================
|
|
# Google Analytics
|
|
VITE_GOOGLE_ANALYTICS_ID=
|
|
|
|
# Sentry (Error tracking)
|
|
VITE_SENTRY_DSN=
|
|
|
|
# AI Services (Optional)
|
|
VITE_AI_SERVICE_URL=
|
|
|
|
# ==================== DEVELOPMENT ====================
|
|
VITE_ENABLE_DEBUG=true
|
|
VITE_LOG_LEVEL=info
|
|
|
|
# ==================== TESTING ====================
|
|
VITE_TEST_USER_EMAIL=test@gamilit.com
|
|
VITE_TEST_USER_PASSWORD=Test123!@#
|