- Updated Docker and Turbo configuration to include more environment variables - Modified API configuration to support dynamic cookie and CORS settings - Enhanced user authentication flow with optional device ID and automatic generation - Refactored login, register, and logout resolvers to handle device management - Updated GraphQL schema to make device ID optional - Improved web application logout and authentication handling - Simplified client-side GraphQL mutations for login and registration
48 lines
879 B
JSON
48 lines
879 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"ui": "tui",
|
|
"globalDependencies": [".env"],
|
|
"globalEnv": [
|
|
"DATABASE_URL",
|
|
"ALLOWED_ORIGINS",
|
|
"API_HOST",
|
|
"API_PORT",
|
|
"COOKIE_SECRET",
|
|
"MEMC_HOST",
|
|
"MEMC_PORT",
|
|
"MINIO_ACCESS_KEY",
|
|
"MINIO_BUCKET_NAME",
|
|
"MINIO_ENDPOINT",
|
|
"MINIO_PORT",
|
|
"MINIO_SECRET_KEY",
|
|
"MINIO_USE_SSL",
|
|
"NODE_ENV",
|
|
"TOKEN_SECRET",
|
|
"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
|
|
}
|
|
}
|
|
}
|