- Introduced `PRIVACY_URL` to the environment configuration for dynamic linking. - Updated localization files to include a user consent agreement for sharing phone numbers, linking to the offer and privacy URLs. - Enhanced welcome and contact addition messages to incorporate the new consent clause, improving user clarity on data handling.
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",
|
|
"OFFER_URL",
|
|
"PRIVACY_URL"
|
|
]
|
|
},
|
|
"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
|
|
}
|
|
}
|
|
}
|