unreal-chat/turbo.json
Juan Sebastian Montoya 1e5a035d33 chore: update environment configuration and deployment scripts
- Added production environment variables to docker-compose.yml
- Updated Dockerfile for API and web to use Turbo build commands
- Modified turbo.json to include new environment variables
- Updated API index.ts to use new environment configuration
- Updated README.md with correct API port
- Added start:api script to package.json
- Improved deployment and configuration management
2025-03-06 23:08:10 -05:00

38 lines
670 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"ui": "tui",
"globalDependencies": [".env"],
"globalEnv": [
"ALLOWED_ORIGINS",
"API_HOST",
"API_PORT",
"DATABASE_URL",
"NODE_ENV",
"VITE_API_URL",
"VITE_WS_URL"
],
"tasks": {
"build": {
"dependsOn": ["^build"],
"inputs": [".env*"],
"outputs": ["dist/**"]
},
"lint": {
"dependsOn": ["^lint"]
},
"check-types": {
"dependsOn": ["^check-types"]
},
"dev": {
"cache": false,
"persistent": true
},
"start": {
"cache": false,
"persistent": true
},
"clean": {
"cache": false
}
}
}