You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

README_EN.md 2.8 kB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. [简体中文](README_ZH.md)
  2. <h1> <img src="https://git.pcl.ac.cn/yoyoyard/opendata/raw/branch/develop/public/img/favicon.png" alt="logo" width="30" height="30">OpenData - open data project management</h1>
  3. [![Build Status](https://drone.gitea.io/api/badges/go-gitea/gitea/status.svg)](https://drone.gitea.io/go-gitea/gitea)
  4. [![Join the Discord chat at https://discord.gg/Gitea](https://img.shields.io/discord/322538954119184384.svg)](https://discord.gg/Gitea)
  5. [![](https://images.microbadger.com/badges/image/gitea/gitea.svg)](https://microbadger.com/images/gitea/gitea "Get your own image badge on microbadger.com")
  6. [![codecov](https://codecov.io/gh/go-gitea/gitea/branch/master/graph/badge.svg)](https://codecov.io/gh/go-gitea/gitea)
  7. [![GoDoc](https://godoc.org/code.gitea.io/gitea?status.svg)](https://godoc.org/code.gitea.io/gitea)
  8. [![GitHub release](https://img.shields.io/github/release/go-gitea/gitea.svg)](https://github.com/go-gitea/gitea/releases/latest)
  9. [![Help Contribute to Open Source](https://www.codetriage.com/go-gitea/gitea/badges/users.svg)](https://www.codetriage.com/go-gitea/gitea)
  10. [![Become a backer/sponsor of gitea](https://opencollective.com/gitea/tiers/backers/badge.svg?label=backers&color=brightgreen)](https://opencollective.com/gitea)
  11. [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
  12. [![Crowdin](https://badges.crowdin.net/gitea/localized.svg)](https://crowdin.com/project/gitea)
  13. ## Purpose
  14. The goal of this project is to make the easiest, fastest, and most
  15. painless way of setting up a self-hosted Git service.
  16. Using Go, this can be done with an independent binary distribution across
  17. **all platforms** which Go supports, including Linux, macOS, and Windows
  18. on x86, amd64, ARM and PowerPC architectures.
  19. Want to try it before doing anything else?
  20. Do it [with the online demo](https://try.gitea.io/)!
  21. This project has been
  22. [forked](https://blog.gitea.io/2016/12/welcome-to-gitea/) from
  23. [Gogs](https://gogs.io) since 2016.11 but changed a lot.
  24. ## Building
  25. From the root of the source tree, run:
  26. TAGS="bindata" make build
  27. or if sqlite support is required:
  28. TAGS="bindata sqlite sqlite_unlock_notify" make build
  29. The `build` target is split into two sub-targets:
  30. - `make backend` which requires [Go 1.12](https://golang.org/dl/) or greater.
  31. - `make frontend` which requires [Node.js 10.13](https://nodejs.org/en/download/) or greater.
  32. If pre-built frontend files are present it is possible to only build the backend:
  33. TAGS="bindata" make backend
  34. More info: https://docs.gitea.io/en-us/install-from-source/
  35. ## Using
  36. ./opendata web
  37. NOTE: If you're interested in using our APIs, we have experimental
  38. support with [documentation](https://try.gitea.io/api/swagger).