cloudaxe-opencode/packages/console/app/src/config.ts

30 lines
549 B
TypeScript
Raw Permalink Normal View History

2025-11-03 23:03:10 +00:00
/**
* Application-wide constants and configuration
*/
export const config = {
// Base URL
baseUrl: "https://opencode.ai",
2025-11-03 23:03:10 +00:00
// GitHub
github: {
repoUrl: "https://github.com/anomalyco/opencode",
2025-11-03 23:03:10 +00:00
starsFormatted: {
2026-05-14 16:26:05 +00:00
compact: "160K",
full: "160,000",
2025-11-03 23:03:10 +00:00
},
},
// Social links
social: {
twitter: "https://x.com/opencode",
discord: "https://discord.gg/opencode",
},
// Static stats (used on landing page)
stats: {
2026-05-14 16:26:05 +00:00
contributors: "900",
commits: "13,000",
monthlyUsers: "7.5M",
2025-11-03 23:03:10 +00:00
},
} as const