zapishis-client/turbo.json
vchikalkin 64c9134cc2 feat: add URL_FAQ environment variable and update bot localization
- Introduced a new environment variable URL_FAQ for FAQ links.
- Updated Russian localization to include a button for FAQ access.
- Modified the main menu to include a URL button for the FAQ section.
2025-10-27 13:43:22 +03:00

50 lines
968 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",
"URL_FAQ"
]
},
"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
}
}
}