1
0

introduction.mdx 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. ---
  2. title: "Introduction"
  3. sidebarTitle: "Introduction"
  4. description: "The painless way to host your own Git service"
  5. icon: "book-open"
  6. ---
  7. <img
  8. className="block dark:hidden"
  9. src="/images/logo-light.svg"
  10. noZoom
  11. />
  12. <img
  13. className="hidden dark:block"
  14. src="/images/logo-dark.svg"
  15. noZoom
  16. />
  17. ## Vision
  18. The Gogs project aims to build a simple, stable and extensible self-hosted Git service that can be set up in the most painless way. With Go, this can be done with an independent binary distribution across all platforms that Go supports, including Linux, macOS, Windows and ARM-based systems.
  19. ## Core values
  20. - **Simple to install**: Run the binary, or run as a Docker container.
  21. - **Cross-platform**: Runs on every platform that Go toolchain supports.
  22. - **Lightweight**: Unrealistically low resource consumption to get started. Only got 64 MiB of RAM and a quarter of vCPU? No problem!
  23. - **Open source**: MIT-licensed since 2014, all source code available in public.
  24. ## Sponsors
  25. The growth of the Gogs project wasn't possible without our world-class sponsors! <Icon icon="heart" iconType="solid" color="#e25555" />
  26. <Columns cols={2}>
  27. <a href="https://www.digitalocean.com/?refcode=5aeb02268b55&utm_campaign=Referral_Invite&utm_medium=Referral_Program&utm_source=badge" target="_blank" style={{borderBottom: "none"}}>
  28. <img
  29. className="block dark:hidden"
  30. src="/images/sponsors/digitalocean-light.png"
  31. width={320}
  32. noZoom
  33. />
  34. <img
  35. className="hidden dark:block"
  36. src="/images/sponsors/digitalocean-dark.png"
  37. width={320}
  38. noZoom
  39. />
  40. </a>
  41. <a href="https://www.mintlify.com" target="_blank" style={{borderBottom: "none"}}>
  42. <img
  43. className="block dark:hidden"
  44. src="/images/sponsors/mintlify-light.svg"
  45. width={320}
  46. noZoom
  47. />
  48. <img
  49. className="hidden dark:block"
  50. src="/images/sponsors/mintlify-dark.svg"
  51. width={320}
  52. noZoom
  53. />
  54. </a>
  55. <a href="https://www.crowdin.com" target="_blank" style={{borderBottom: "none"}}>
  56. <img
  57. className="block dark:hidden"
  58. src="/images/sponsors/crowdin-light.svg"
  59. width={320}
  60. noZoom
  61. />
  62. <img
  63. className="hidden dark:block"
  64. src="/images/sponsors/crowdin-dark.svg"
  65. width={320}
  66. noZoom
  67. />
  68. </a>
  69. <a href="https://www.buildkite.com" target="_blank" style={{borderBottom: "none", paddingTop: "5px"}}>
  70. <img
  71. className="block dark:hidden"
  72. src="/images/sponsors/buildkite-light.svg"
  73. width={320}
  74. noZoom
  75. />
  76. <img
  77. className="hidden dark:block"
  78. src="/images/sponsors/buildkite-dark.svg"
  79. width={320}
  80. noZoom
  81. />
  82. </a>
  83. </Columns>
  84. ## Quickstart
  85. <CardGroup cols={2}>
  86. <Card
  87. title="Installation"
  88. icon="download"
  89. href="/getting-started/installation"
  90. >
  91. Get your own Git service up and running in minutes.
  92. </Card>
  93. <Card
  94. title="Configuration"
  95. icon="gear"
  96. href="/fine-tuning/configuration-primer"
  97. >
  98. Fine tune your instance exactly the way you want.
  99. </Card>
  100. <Card
  101. title="Features"
  102. icon="star"
  103. href="/advancing/authentication"
  104. >
  105. Discover powerful and advanced features.
  106. </Card>
  107. <Card
  108. title="Upgrade"
  109. icon="arrow-up"
  110. href="/asking/release-strategy"
  111. >
  112. Keep up the version and energy.
  113. </Card>
  114. </CardGroup>