- Updated environment variable names for consistency across the application. - Modified references in the deployment workflow, bot conversations, and web components to use the new variable names.
49 lines
949 B
JSON
49 lines
949 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"ui": "tui",
|
|
"tasks": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"inputs": ["$TURBO_DEFAULT$", ".env*"],
|
|
"outputs": [".next/**", "!.next/cache/**"],
|
|
"env": [
|
|
"URL_GRAPHQL",
|
|
"PASSWORD_GRAPHQL",
|
|
"LOGIN_GRAPHQL",
|
|
"BOT_TOKEN",
|
|
"NEXTAUTH_SECRET",
|
|
"BOT_URL",
|
|
"SUPPORT_TELEGRAM_URL",
|
|
"BOT_PROVIDER_TOKEN",
|
|
"REDIS_HOST",
|
|
"REDIS_PORT",
|
|
"REDIS_PASSWORD",
|
|
"URL_OFFER",
|
|
"URL_PRIVACY"
|
|
]
|
|
},
|
|
"lint": {
|
|
"dependsOn": ["^lint"]
|
|
},
|
|
"check-types": {
|
|
"dependsOn": ["^check-types"]
|
|
},
|
|
"dev": {
|
|
"cache": false,
|
|
"persistent": true
|
|
},
|
|
"lint-staged": {
|
|
"cache": false
|
|
},
|
|
"graphql:codegen": {
|
|
"cache": false
|
|
},
|
|
"test:unit": {
|
|
"cache": false
|
|
},
|
|
"test:e2e": {
|
|
"cache": false
|
|
}
|
|
}
|
|
}
|