2016-11-03 17:50:44 +03:00
# Gitea - Git with a cup of tea
2016-11-24 23:43:05 +03:00
[![Build Status ](http://drone.gitea.io/api/badges/go-gitea/gitea/status.svg )](http://drone.gitea.io/go-gitea/gitea)
2016-11-03 17:50:44 +03:00
[![Join the chat at https://gitter.im/go-gitea/gitea ](https://badges.gitter.im/Join%20Chat.svg )](https://gitter.im/go-gitea/gitea?utm_source=badge& utm_medium=badge& utm_campaign=pr-badge& utm_content=badge)
2016-11-24 23:43:05 +03:00
[![ ](https://images.microbadger.com/badges/image/gitea/gitea.svg )](http://microbadger.com/images/gitea/gitea "Get your own image badge on microbadger.com")
[![Coverage Status ](https://coverage.gitea.io/badges/go-gitea/gitea/coverage.svg )](https://coverage.gitea.io/go-gitea/gitea)
[![Go Report Card ](https://goreportcard.com/badge/code.gitea.io/gitea )](https://goreportcard.com/report/code.gitea.io/gitea)
[![GoDoc ](https://godoc.org/code.gitea.io/gitea?status.svg )](https://godoc.org/code.gitea.io/gitea)
2014-03-26 20:31:01 +04:00
2016-11-27 14:09:55 +03:00
[![ ](public/img/gitea-large-resize.png )](https://github.com/go-gitea/gitea)
2014-03-15 18:29:18 +04:00
2016-11-10 13:52:39 +03:00
##### Status
2016-11-11 15:35:58 +03:00
**Current version**: (see [Releases ](https://github.com/go-gitea/gitea/releases ))
2014-03-13 10:55:14 +04:00
2015-12-05 21:50:43 +03:00
| Web | UI | Preview |
|:-------------:|:-------:|:-------:|
|![Dashboard](https://gogs.io/img/screenshots/1.png)|![Repository](https://gogs.io/img/screenshots/2.png)|![Commits History](https://gogs.io/img/screenshots/3.png)|
|![Profile](https://gogs.io/img/screenshots/4.png)|![Admin Dashboard](https://gogs.io/img/screenshots/5.png)|![Diff](https://gogs.io/img/screenshots/6.png)|
|![Issues](https://gogs.io/img/screenshots/7.png)|![Releases](https://gogs.io/img/screenshots/8.png)|![Organization](https://gogs.io/img/screenshots/9.png)|
2015-08-15 20:41:11 +03:00
2016-02-27 19:31:24 +03:00
### Important Notes
2014-04-13 06:30:00 +04:00
2016-11-14 10:17:15 +03:00
1. **YOU MUST READ THE [Contributors Guide](CONTRIBUTING.md) BEFORE STARTING TO WORK ON A PULL REQUEST** .
2016-11-10 13:52:39 +03:00
2. If you think there are vulnerabilities in the project, please talk privately to **security@gitea.io** . Thanks!
3. If you're interested in using APIs, we have experimental support with [documentation ](https://godoc.org/github.com/go-gitea/go-sdk ).
2014-03-29 18:01:52 +04:00
2014-02-12 21:49:46 +04:00
## Purpose
2015-11-05 02:34:08 +03:00
The goal of this project is to make the easiest, fastest, and most painless way of setting up a self-hosted Git service. With Go, this can be done with an independent binary distribution across **ALL platforms** that Go supports, including Linux, Mac OS X, Windows and ARM.
2014-02-12 21:49:46 +04:00
2016-12-15 11:56:46 +03:00
Want to try it before doing anything else?
Do it [online ](https://try.gitea.io/ )!
2014-03-12 03:25:50 +04:00
## Features
2014-03-16 10:28:24 +04:00
- Activity timeline
2015-10-25 10:30:16 +03:00
- SSH and HTTP/HTTPS protocols
- SMTP/LDAP/Reverse proxy authentication
- Reverse proxy with sub-path
- Account/Organization/Repository management
2016-08-15 12:12:18 +03:00
- Add/Remove repository collaborators
2015-10-25 10:30:16 +03:00
- Repository/Organization webhooks (including Slack)
2015-08-10 18:38:46 +03:00
- Repository Git hooks/deploy keys
2015-12-07 07:07:02 +03:00
- Repository issues, pull requests and wiki
2016-08-15 12:12:18 +03:00
- Migrate and mirror repository and its wiki
- Web editor for repository files and wiki
2016-08-07 21:01:47 +03:00
- Gravatar and Federated avatar with custom source
2015-08-10 18:38:46 +03:00
- Mail service
2014-05-16 07:03:26 +04:00
- Administration panel
2015-11-05 05:57:10 +03:00
- Supports MySQL, PostgreSQL, SQLite3 and [TiDB ](https://github.com/pingcap/tidb ) (experimental)
2016-11-20 05:40:13 +03:00
- Multi-language support ([20 languages](https://crowdin.com/project/gogs))
2014-03-12 03:25:50 +04:00
2014-04-26 11:22:22 +04:00
## System Requirements
2015-02-14 23:31:07 +03:00
- A cheap Raspberry Pi is powerful enough for basic functionality.
2015-11-08 04:20:51 +03:00
- 2 CPU cores and 1GB RAM would be the baseline for teamwork.
2014-04-26 11:22:22 +04:00
2015-07-07 08:51:28 +03:00
## Browser Support
2015-08-29 11:07:02 +03:00
- Please see [Semantic UI ](https://github.com/Semantic-Org/Semantic-UI#browser-support ) for specific versions of supported browsers.
- The official support minimal size is **1024*768** , UI may still looks right in smaller size but no promises and fixes.
2015-07-23 23:50:05 +03:00
2014-02-15 03:16:54 +04:00
## Installation
2016-11-10 13:52:39 +03:00
**Note: As Gitea is a [Gogs ](https://github.com/gogits/gogs ) fork, tutorials and documentation related to gogs applies to Gitea too**
2014-03-12 08:19:45 +04:00
2016-11-10 13:52:39 +03:00
How to install Gitea:
2014-02-15 03:16:54 +04:00
2016-11-11 15:35:58 +03:00
- go get code.gitea.io/gitea
2016-11-03 15:29:56 +03:00
- [Ship with Docker ](https://github.com/go-gitea/gitea/tree/master/docker )
2016-11-10 13:52:39 +03:00
- [Install with Vagrant ](https://github.com/go-gitea/examples/tree/master/vagrant )
**Note: binary release will be available soon**
2014-02-15 03:16:54 +04:00
2015-08-07 20:12:14 +03:00
### Tutorials
- [How To Set Up Gogs on Ubuntu 14.04 ](https://www.digitalocean.com/community/tutorials/how-to-set-up-gogs-on-ubuntu-14-04 )
2015-08-07 20:17:44 +03:00
- [Run your own GitHub-like service with the help of Docker ](http://blog.hypriot.com/post/run-your-own-github-like-service-with-docker/ )
2016-07-23 16:23:30 +03:00
- [Dockerized Gogs git server and alpine postgres in 20 minutes or less ](http://garthwaite.org/docker-gogs.html )
- [Host Your Own Private GitHub with Gogs.io ](https://eladnava.com/host-your-own-private-github-with-gogs-io/ )
2015-11-09 19:34:04 +03:00
- [使用 Gogs 搭建自己的 Git 服务器 ](https://mynook.info/blog/post/host-your-own-git-server-using-gogs ) (Chinese)
2015-08-07 20:17:44 +03:00
- [阿里云上 Ubuntu 14.04 64 位安装 Gogs ](http://my.oschina.net/luyao/blog/375654 ) (Chinese)
- [Installing Gogs on FreeBSD ](https://www.codejam.info/2015/03/installing-gogs-on-freebsd.html )
- [Gogs on Raspberry Pi ](http://blog.meinside.pe.kr/Gogs-on-Raspberry-Pi/ )
2015-12-21 15:24:11 +03:00
- [Cloudflare Full SSL with GOGS (Go Git Service) using NGINX ](http://www.listekconsulting.com/articles/cloudflare-full-ssl-with-gogs-go-git-service-using-nginx/ )
2015-08-07 20:12:14 +03:00
2015-08-07 19:29:50 +03:00
### Screencasts
2016-08-07 21:01:47 +03:00
- [How to install Gogs on a Linux Server (DigitalOcean) ](https://www.youtube.com/watch?v=deSfX0gqefE )
2015-12-14 03:56:33 +03:00
- [Instalando Gogs no Ubuntu ](https://www.youtube.com/watch?v=4UkHAR1F7ZA ) (Português)
2015-08-07 19:29:50 +03:00
2015-09-12 16:21:09 +03:00
### Deploy to Cloud
- [OpenShift ](https://github.com/tkisme/gogs-openshift )
2015-09-26 02:07:21 +03:00
- [Cloudron ](https://cloudron.io/appstore.html#io.gogs.cloudronapp )
- [Scaleway ](https://www.scaleway.com/imagehub/gogs/ )
2015-10-05 03:54:06 +03:00
- [Portal ](https://portaldemo.xyz/cloud/ )
2015-10-29 10:21:59 +03:00
- [Sandstorm ](https://github.com/cem/gogs-sandstorm )
2015-12-02 03:53:19 +03:00
- [sloppy.io ](https://github.com/sloppyio/quickstarters/tree/master/gogs )
2016-02-05 18:19:37 +03:00
- [YunoHost ](https://github.com/mbugeia/gogs_ynh )
2016-05-07 02:44:05 +03:00
- [DPlatform ](https://github.com/j8r/DPlatform )
2015-10-29 10:21:59 +03:00
2015-12-05 21:50:43 +03:00
## Software and Service Support
- [Drone ](https://github.com/drone/drone ) (CI)
- [Fabric8 ](http://fabric8.io/ ) (DevOps)
- [Taiga ](https://taiga.io/ ) (Project Management)
2015-12-21 15:24:11 +03:00
- [Puppet ](https://forge.puppetlabs.com/Siteminds/gogs ) (IT)
2016-01-14 09:28:07 +03:00
- [Kanboard ](http://kanboard.net/plugin/gogs-webhook ) (Project Management)
- [BearyChat ](https://bearychat.com/ ) (Team Communication)
2016-03-14 00:37:44 +03:00
- [HiWork ](http://www.hiwork.cc/ ) (Team Communication)
2015-12-05 21:50:43 +03:00
2015-10-29 10:21:59 +03:00
### Product Support
- [Synology ](https://www.synology.com ) (Docker)
- [One Space ](http://www.onespace.cc ) (App Store)
2015-09-12 16:21:09 +03:00
2014-02-12 21:49:46 +04:00
## Acknowledgments
2015-10-25 10:10:22 +03:00
- Router and middleware mechanism of [Macaron ](https://github.com/go-macaron/macaron ).
2014-03-23 01:59:22 +04:00
- System Monitor Status is inspired by [GoBlog ](https://github.com/fuxiaohei/goblog ).
2016-08-15 12:12:18 +03:00
- Thanks [Rocker ](http://weibo.com/rocker1989 ) for designing Logo.
2014-11-18 01:19:17 +03:00
- Thanks [Crowdin ](https://crowdin.com/project/gogs ) for providing open source translation plan.
2015-11-05 22:40:22 +03:00
- Thanks [DigitalOcean ](https://www.digitalocean.com ) for hosting home and demo sites.
2016-07-23 14:22:43 +03:00
- Thanks [KeyCDN ](https://www.keycdn.com/ ) and [QiNiu ](http://www.qiniu.com/ ) for providing CDN service.
2014-02-12 21:49:46 +04:00
2016-11-28 16:34:06 +03:00
## Contributing
Fork -> Patch -> Push -> Pull Request
## Authors
* [Maintainers ](https://github.com/orgs/go-gitea/people )
* [Contributors ](https://github.com/go-gitea/gitea/graphs/contributors )
* [Translators ](conf/locale/TRANSLATORS )
2014-03-27 20:34:12 +04:00
## License
2016-11-03 15:29:56 +03:00
This project is under the MIT License. See the [LICENSE ](https://github.com/go-gitea/gitea/blob/master/LICENSE ) file for the full license text.