mirror of
https://github.com/aljazceru/opencode.git
synced 2025-12-25 11:44:22 +01:00
30 lines
543 B
TypeScript
30 lines
543 B
TypeScript
/**
|
|
* Application-wide constants and configuration
|
|
*/
|
|
export const config = {
|
|
// Base URL
|
|
baseUrl: "https://opencode.ai",
|
|
|
|
// GitHub
|
|
github: {
|
|
repoUrl: "https://github.com/sst/opencode",
|
|
starsFormatted: {
|
|
compact: "30K",
|
|
full: "30,000",
|
|
},
|
|
},
|
|
|
|
// Social links
|
|
social: {
|
|
twitter: "https://x.com/opencode",
|
|
discord: "https://discord.gg/opencode",
|
|
},
|
|
|
|
// Static stats (used on landing page)
|
|
stats: {
|
|
contributors: "250",
|
|
commits: "3,500",
|
|
monthlyUsers: "300,000",
|
|
},
|
|
} as const
|