zapishis-client/turbo.json
vchikalkin 4336cf5e60 feat(env): add BOT_URL to environment variables and update related configurations
- Introduced BOT_URL to the environment schema for enhanced configuration management.
- Updated turbo.json to include BOT_URL in the environment variables list.
- Modified subscription-bar.tsx to improve user messaging for subscription availability.
2025-09-07 16:57:44 +03:00

42 lines
773 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"
]
},
"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
}
}
}