zapishis-client/turbo.json
vchikalkin 19b53db5f3 refactor: rename OFFER_URL and PRIVACY_URL to URL_OFFER and URL_PRIVACY
- 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.
2025-10-27 13:26:00 +03:00

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
}
}
}