config.ts 543 B

1234567891011121314151617181920212223242526272829
  1. /**
  2. * Application-wide constants and configuration
  3. */
  4. export const config = {
  5. // Base URL
  6. baseUrl: "https://opencode.ai",
  7. // GitHub
  8. github: {
  9. repoUrl: "https://github.com/sst/opencode",
  10. starsFormatted: {
  11. compact: "38K",
  12. full: "38,000",
  13. },
  14. },
  15. // Social links
  16. social: {
  17. twitter: "https://x.com/opencode",
  18. discord: "https://discord.gg/opencode",
  19. },
  20. // Static stats (used on landing page)
  21. stats: {
  22. contributors: "375",
  23. commits: "5,250",
  24. monthlyUsers: "400,000",
  25. },
  26. } as const