- Configure workspace Git repository with comprehensive .gitignore - Add Odoo as submodule for ERP reference code - Include documentation: SETUP.md, GIT-STRUCTURE.md - Add gitignore templates for projects (backend, frontend, database) - Structure supports independent repos per project/subproject level Workspace includes: - core/ - Reusable patterns, modules, orchestration system - projects/ - Active projects (erp-suite, gamilit, trading-platform, etc.) - knowledge-base/ - Reference code and patterns (includes Odoo submodule) - devtools/ - Development tools and templates - customers/ - Client implementations template 🤖 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!@#
|