|
113 | 113 | "type": "string", |
114 | 114 | "format": "uri", |
115 | 115 | "description": "Public socket URL" |
| 116 | + }, |
| 117 | + "NODE_ENV": { |
| 118 | + "type": "string", |
| 119 | + "enum": ["development", "test", "production"], |
| 120 | + "description": "Runtime environment" |
| 121 | + }, |
| 122 | + "NEXT_TELEMETRY_DISABLED": { |
| 123 | + "type": "string", |
| 124 | + "description": "Disable Next.js telemetry" |
| 125 | + }, |
| 126 | + "RESEND_API_KEY": { |
| 127 | + "type": "string", |
| 128 | + "description": "Resend API key for transactional emails" |
| 129 | + }, |
| 130 | + "EMAIL_DOMAIN": { |
| 131 | + "type": "string", |
| 132 | + "description": "Domain for sending emails" |
| 133 | + }, |
| 134 | + "GOOGLE_CLIENT_ID": { |
| 135 | + "type": "string", |
| 136 | + "description": "Google OAuth client ID" |
| 137 | + }, |
| 138 | + "GOOGLE_CLIENT_SECRET": { |
| 139 | + "type": "string", |
| 140 | + "description": "Google OAuth client secret" |
| 141 | + }, |
| 142 | + "GITHUB_CLIENT_ID": { |
| 143 | + "type": "string", |
| 144 | + "description": "GitHub OAuth client ID" |
| 145 | + }, |
| 146 | + "GITHUB_CLIENT_SECRET": { |
| 147 | + "type": "string", |
| 148 | + "description": "GitHub OAuth client secret" |
| 149 | + }, |
| 150 | + "OPENAI_API_KEY": { |
| 151 | + "type": "string", |
| 152 | + "description": "Primary OpenAI API key" |
| 153 | + }, |
| 154 | + "OPENAI_API_KEY_1": { |
| 155 | + "type": "string", |
| 156 | + "description": "Additional OpenAI API key for load balancing" |
| 157 | + }, |
| 158 | + "OPENAI_API_KEY_2": { |
| 159 | + "type": "string", |
| 160 | + "description": "Additional OpenAI API key for load balancing" |
| 161 | + }, |
| 162 | + "OPENAI_API_KEY_3": { |
| 163 | + "type": "string", |
| 164 | + "description": "Additional OpenAI API key for load balancing" |
| 165 | + }, |
| 166 | + "MISTRAL_API_KEY": { |
| 167 | + "type": "string", |
| 168 | + "description": "Mistral AI API key" |
| 169 | + }, |
| 170 | + "ANTHROPIC_API_KEY_1": { |
| 171 | + "type": "string", |
| 172 | + "description": "Primary Anthropic Claude API key" |
| 173 | + }, |
| 174 | + "ANTHROPIC_API_KEY_2": { |
| 175 | + "type": "string", |
| 176 | + "description": "Additional Anthropic API key for load balancing" |
| 177 | + }, |
| 178 | + "ANTHROPIC_API_KEY_3": { |
| 179 | + "type": "string", |
| 180 | + "description": "Additional Anthropic API key for load balancing" |
| 181 | + }, |
| 182 | + "OLLAMA_URL": { |
| 183 | + "type": "string", |
| 184 | + "format": "uri", |
| 185 | + "description": "Ollama local LLM server URL" |
| 186 | + }, |
| 187 | + "ELEVENLABS_API_KEY": { |
| 188 | + "type": "string", |
| 189 | + "description": "ElevenLabs API key for text-to-speech in deployed chat" |
| 190 | + }, |
| 191 | + "RATE_LIMIT_WINDOW_MS": { |
| 192 | + "type": "string", |
| 193 | + "description": "Rate limit window duration in milliseconds" |
| 194 | + }, |
| 195 | + "RATE_LIMIT_FREE_SYNC": { |
| 196 | + "type": "string", |
| 197 | + "description": "Free tier sync API executions per minute" |
| 198 | + }, |
| 199 | + "RATE_LIMIT_PRO_SYNC": { |
| 200 | + "type": "string", |
| 201 | + "description": "Pro tier sync API executions per minute" |
| 202 | + }, |
| 203 | + "RATE_LIMIT_TEAM_SYNC": { |
| 204 | + "type": "string", |
| 205 | + "description": "Team tier sync API executions per minute" |
| 206 | + }, |
| 207 | + "RATE_LIMIT_ENTERPRISE_SYNC": { |
| 208 | + "type": "string", |
| 209 | + "description": "Enterprise tier sync API executions per minute" |
| 210 | + }, |
| 211 | + "RATE_LIMIT_FREE_ASYNC": { |
| 212 | + "type": "string", |
| 213 | + "description": "Free tier async API executions per minute" |
| 214 | + }, |
| 215 | + "RATE_LIMIT_PRO_ASYNC": { |
| 216 | + "type": "string", |
| 217 | + "description": "Pro tier async API executions per minute" |
| 218 | + }, |
| 219 | + "RATE_LIMIT_TEAM_ASYNC": { |
| 220 | + "type": "string", |
| 221 | + "description": "Team tier async API executions per minute" |
| 222 | + }, |
| 223 | + "RATE_LIMIT_ENTERPRISE_ASYNC": { |
| 224 | + "type": "string", |
| 225 | + "description": "Enterprise tier async API executions per minute" |
| 226 | + }, |
| 227 | + "MANUAL_EXECUTION_LIMIT": { |
| 228 | + "type": "string", |
| 229 | + "description": "Manual execution bypass value" |
| 230 | + }, |
| 231 | + "NEXT_PUBLIC_BRAND_NAME": { |
| 232 | + "type": "string", |
| 233 | + "description": "Custom brand name" |
| 234 | + }, |
| 235 | + "NEXT_PUBLIC_BRAND_LOGO_URL": { |
| 236 | + "type": "string", |
| 237 | + "description": "Custom logo URL" |
| 238 | + }, |
| 239 | + "NEXT_PUBLIC_BRAND_FAVICON_URL": { |
| 240 | + "type": "string", |
| 241 | + "description": "Custom favicon URL" |
| 242 | + }, |
| 243 | + "NEXT_PUBLIC_BRAND_PRIMARY_COLOR": { |
| 244 | + "type": "string", |
| 245 | + "description": "Primary brand color (hex)" |
| 246 | + }, |
| 247 | + "NEXT_PUBLIC_BRAND_SECONDARY_COLOR": { |
| 248 | + "type": "string", |
| 249 | + "description": "Secondary brand color (hex)" |
| 250 | + }, |
| 251 | + "NEXT_PUBLIC_BRAND_ACCENT_COLOR": { |
| 252 | + "type": "string", |
| 253 | + "description": "Accent brand color (hex)" |
| 254 | + }, |
| 255 | + "NEXT_PUBLIC_CUSTOM_CSS_URL": { |
| 256 | + "type": "string", |
| 257 | + "description": "Custom stylesheet URL" |
| 258 | + }, |
| 259 | + "NEXT_PUBLIC_HIDE_BRANDING": { |
| 260 | + "type": "string", |
| 261 | + "description": "Hide powered by branding" |
| 262 | + }, |
| 263 | + "NEXT_PUBLIC_CUSTOM_FOOTER_TEXT": { |
| 264 | + "type": "string", |
| 265 | + "description": "Custom footer text" |
| 266 | + }, |
| 267 | + "NEXT_PUBLIC_SUPPORT_EMAIL": { |
| 268 | + "type": "string", |
| 269 | + "format": "email", |
| 270 | + "description": "Support email address" |
| 271 | + }, |
| 272 | + "NEXT_PUBLIC_SUPPORT_URL": { |
| 273 | + "type": "string", |
| 274 | + "description": "Support page URL" |
| 275 | + }, |
| 276 | + "NEXT_PUBLIC_DOCUMENTATION_URL": { |
| 277 | + "type": "string", |
| 278 | + "description": "Documentation URL" |
| 279 | + }, |
| 280 | + "NEXT_PUBLIC_TERMS_URL": { |
| 281 | + "type": "string", |
| 282 | + "description": "Terms of service URL" |
| 283 | + }, |
| 284 | + "NEXT_PUBLIC_PRIVACY_URL": { |
| 285 | + "type": "string", |
| 286 | + "description": "Privacy policy URL" |
| 287 | + }, |
| 288 | + "NEXT_PUBLIC_SENTRY_DSN": { |
| 289 | + "type": "string", |
| 290 | + "description": "Sentry DSN for error tracking" |
| 291 | + }, |
| 292 | + "ALLOWED_LOGIN_EMAILS": { |
| 293 | + "type": "string", |
| 294 | + "description": "Comma-separated list of allowed email addresses for login" |
| 295 | + }, |
| 296 | + "ALLOWED_LOGIN_DOMAINS": { |
| 297 | + "type": "string", |
| 298 | + "description": "Comma-separated list of allowed email domains for login" |
116 | 299 | } |
117 | 300 | } |
118 | 301 | } |
|
192 | 375 | "ALLOWED_ORIGINS": { |
193 | 376 | "type": "string", |
194 | 377 | "description": "CORS allowed origins" |
| 378 | + }, |
| 379 | + "NODE_ENV": { |
| 380 | + "type": "string", |
| 381 | + "enum": ["development", "test", "production"], |
| 382 | + "description": "Runtime environment" |
195 | 383 | } |
196 | 384 | } |
197 | 385 | } |
|
0 commit comments