mirror of
https://github.com/anomalyco/opencode.git
synced 2026-05-02 10:46:46 +00:00
36 lines
716 B
TypeScript
36 lines
716 B
TypeScript
/**
|
|
* Application-wide constants and configuration
|
|
*/
|
|
export const config = {
|
|
// Base URL
|
|
baseUrl: "https://opencode.ai",
|
|
|
|
// GitHub
|
|
github: {
|
|
repoUrl: "https://github.com/anomalyco/opencode",
|
|
starsFormatted: {
|
|
compact: "60K",
|
|
full: "60,000",
|
|
},
|
|
},
|
|
|
|
// Social links
|
|
social: {
|
|
twitter: "https://x.com/opencode",
|
|
discord: "https://discord.gg/opencode",
|
|
},
|
|
|
|
// Static stats (used on landing page)
|
|
stats: {
|
|
contributors: "500",
|
|
commits: "6,500",
|
|
monthlyUsers: "650,000",
|
|
},
|
|
|
|
// Stripe
|
|
stripe: {
|
|
publishableKey:
|
|
"pk_live_51OhXSKEclFNgdHcR9dDfYGwQeKuPfKo0IjA5kWBQIXKMFhE8QFd9bYLdPZC6klRKEgEkxJYSKuZg9U3FKHdLnF4300F9qLqMgP",
|
|
},
|
|
} as const
|