Skip to content

Commit a4cbe79

Browse files
committed
fix
1 parent f3ed11d commit a4cbe79

File tree

165 files changed

+18302
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

165 files changed

+18302
-0
lines changed

.fswatch.json

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"paths": ["."],
3+
"depth": 2,
4+
"exclude": [],
5+
"include": ["\\.go$", "\\.ini$"],
6+
"command": [
7+
"bash", "-c", "go build && ./gogs web"
8+
],
9+
"env": {
10+
"POWERED_BY": "github.com/shxsun/fswatch"
11+
}
12+
}

.gitignore

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
.DS_Store
2+
*.db
3+
*.log
4+
custom/
5+
data/
6+
.vendor/
7+
.idea/
8+
*.iml
9+
public/img/avatar/
10+
11+
# Compiled Object files, Static and Dynamic libs (Shared Objects)
12+
*.o
13+
*.a
14+
*.so
15+
16+
# Folders
17+
_obj
18+
_test
19+
20+
# Architecture specific extensions/prefixes
21+
*.[568vq]
22+
[568vq].out
23+
24+
*.cgo1.go
25+
*.cgo2.c
26+
_cgo_defun.c
27+
_cgo_gotypes.go
28+
_cgo_export.*
29+
30+
_testmain.go
31+
32+
*.exe
33+
*.exe~
34+
gogs
35+
__pycache__
36+
*.pem

.gobuild.yml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
filesets:
2+
includes:
3+
- templates
4+
- public
5+
- conf
6+
- LICENSE
7+
- README.md
8+
- README_ZH.md
9+
- start.bat
10+
- start.sh

.gopmfile

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
[target]
2+
path = github.com/gogits/gogs
3+
4+
[deps]
5+
github.com/codegangsta/cli =
6+
github.com/go-martini/martini =
7+
github.com/Unknwon/com =
8+
github.com/Unknwon/cae =
9+
github.com/Unknwon/goconfig =
10+
github.com/nfnt/resize =
11+
github.com/lunny/xorm =
12+
github.com/go-sql-driver/mysql =
13+
github.com/lib/pq =
14+
github.com/qiniu/log =
15+
code.google.com/p/goauth2 =
16+
github.com/gogits/logs =
17+
github.com/gogits/binding =
18+
github.com/gogits/git =
19+
github.com/gogits/gfm =
20+
github.com/gogits/cache =
21+
github.com/gogits/session =
22+
github.com/gogits/webdav =
23+
24+
[res]
25+
include = templates|public|conf
26+

CONTRIBUTING.md

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# Contributing to Gogs
2+
3+
> Thanks [drone](https://github.com/drone/drone) because this guidelines sheet is forked from its [CONTRIBUTING.md](https://github.com/drone/drone/blob/master/CONTRIBUTING.md).
4+
5+
**This document is pre^3 release, we're not ready for receiving contribution until v0.5.0 release.**
6+
7+
Want to hack on Gogs? Awesome! Here are instructions to get you started. They are probably not perfect, please let us know if anything feels wrong or incomplete.
8+
9+
## Contribution guidelines
10+
11+
### Pull requests are always welcome
12+
13+
We are always thrilled to receive pull requests, and do our best to process them as fast as possible. Not sure if that typo is worth a pull request? Do it! We will appreciate it.
14+
15+
If your pull request is not accepted on the first try, don't be discouraged! If there's a problem with the implementation, hopefully you received feedback on what to improve.
16+
17+
We're trying very hard to keep Gogs lean and focused. We don't want it to do everything for everybody. This means that we might decide against incorporating a new feature.
18+
19+
### Discuss your design on the mailing list
20+
21+
We recommend discussing your plans [on the mailing list](https://groups.google.com/forum/#!forum/gogits) before starting to code - especially for more ambitious contributions. This gives other contributors a chance to point you in the right direction, give feedback on your design, and maybe point out if someone else is working on the same thing.
22+
23+
We may close your pull request if not first discussed on the mailing list. We aren't doing this to be jerks. We are doing this to prevent people from spending large amounts of time on changes that may need to be designed or architected in a specific way, or may not align with the vision of the project.
24+
25+
### Create issues...
26+
27+
Any significant improvement should be documented as [a GitHub issue](https://github.com/gogits/gogs/issues) before anybody starts working on it.
28+
29+
### ...but check for existing issues first!
30+
31+
Please take a moment to check that an issue doesn't already exist documenting your bug report or improvement proposal. If it does, it never hurts to add a quick "+1" or "I have this problem too". This will help prioritize the most common problems and requests.

LICENSE

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
Copyright (c) 2014
2+
All rights reserved.
3+
4+
Redistribution and use in source and binary forms, with or without
5+
modification, are permitted provided that the following conditions are met:
6+
7+
* Redistributions of source code must retain the above copyright notice, this
8+
list of conditions and the following disclaimer.
9+
10+
* Redistributions in binary form must reproduce the above copyright notice,
11+
this list of conditions and the following disclaimer in the documentation
12+
and/or other materials provided with the distribution.
13+
14+
* Neither the name of the {organization} nor the names of its
15+
contributors may be used to endorse or promote products derived from
16+
this software without specific prior written permission.
17+
18+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
22+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
24+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
25+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
26+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

README.md

+66
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
Gogs - Go Git Service [![wercker status](https://app.wercker.com/status/ad0bdb0bc450ac6f09bc56b9640a50aa/s/ "wercker status")](https://app.wercker.com/project/bykey/ad0bdb0bc450ac6f09bc56b9640a50aa) [![Build Status](https://drone.io/github.com/gogits/gogs/status.png)](https://drone.io/github.com/gogits/gogs/latest)
2+
=====================
3+
4+
Gogs(Go Git Service) is a Self Hosted Git Service in the Go Programming Language.
5+
6+
![Demo](http://gowalker.org/public/gogs_demo.gif)
7+
8+
##### Current version: 0.2.3 Alpha
9+
10+
#### Due to testing purpose, data of [try.gogits.org](http://try.gogits.org) has been reset in April 6, 2014 and will reset multiple times after. Please do NOT put your important data on the site.
11+
12+
#### Other language version
13+
14+
- [简体中文](README_ZH.md)
15+
16+
## Purpose
17+
18+
Since we choose to use pure Go implementation of Git manipulation, Gogs certainly supports **ALL platforms** that Go supports, including Linux, Mac OS X, and Windows with **ZERO** dependency.
19+
20+
More importantly, Gogs only needs one binary to setup your own project hosting on the fly!
21+
22+
## Overview
23+
24+
- Please see [Wiki](https://github.com/gogits/gogs/wiki) for project design, known issues, change log and road map.
25+
- See [Trello Board](https://trello.com/b/uxAoeLUl/gogs-go-git-service) to follow the develop team.
26+
- Try it before anything? Do it [online](http://try.gogits.org/Unknown/gogs) or go down to **Installation -> Install from binary** section!
27+
- Having troubles? Get help from [Troubleshooting](https://github.com/gogits/gogs/wiki/Troubleshooting).
28+
29+
## Features
30+
31+
- Activity timeline
32+
- SSH/HTTP(S) protocol support.
33+
- Register/delete/rename account.
34+
- Create/delete/watch/rename/transfer public repository.
35+
- Repository viewer.
36+
- Issue tracker.
37+
- Gravatar and cache support.
38+
- Mail service(register, issue).
39+
- Administration panel.
40+
- Supports MySQL, PostgreSQL and SQLite3(binary release only).
41+
42+
## Installation
43+
44+
Make sure you install [Prerequirements](https://github.com/gogits/gogs/wiki/Prerequirements) first.
45+
46+
There are two ways to install Gogs:
47+
48+
- [Install from binary](https://github.com/gogits/gogs/wiki/Install-from-binary): **STRONGLY RECOMMENDED** for just try and deployment!
49+
- [Install from source](https://github.com/gogits/gogs/wiki/Install-from-source)
50+
51+
## Acknowledgments
52+
53+
- Logo is inspired by [martini-contrib](https://github.com/martini-contrib).
54+
- Router and middleware mechanism of [martini](http://martini.codegangsta.io/).
55+
- Mail Service, modules design is inspired by [WeTalk](https://github.com/beego/wetalk).
56+
- System Monitor Status is inspired by [GoBlog](https://github.com/fuxiaohei/goblog).
57+
- Usage and modification from [beego](http://beego.me) modules.
58+
- Thanks [gobuild.io](http://gobuild.io) for providing binary compile and download service.
59+
60+
## Contributors
61+
62+
This project was launched by [Unknown](https://github.com/Unknwon) and [lunny](https://github.com/lunny); [fuxiaohei](https://github.com/fuxiaohei), [slene](https://github.com/slene) and [skyblue](https://github.com/shxsun) joined the team soon after. See [contributors page](https://github.com/gogits/gogs/graphs/contributors) for full list of contributors.
63+
64+
## License
65+
66+
Gogs is under the MIT License. See the [LICENSE](https://github.com/gogits/gogs/blob/master/LICENSE) file for the full license text.

README_ZH.md

+60
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
Gogs - Go Git Service [![wercker status](https://app.wercker.com/status/ad0bdb0bc450ac6f09bc56b9640a50aa/s/ "wercker status")](https://app.wercker.com/project/bykey/ad0bdb0bc450ac6f09bc56b9640a50aa) [![Build Status](https://drone.io/github.com/gogits/gogs/status.png)](https://drone.io/github.com/gogits/gogs/latest)
2+
=====================
3+
4+
Gogs(Go Git Service) 是一个由 Go 语言编写的自助 Git 托管服务。
5+
6+
![Demo](http://gowalker.org/public/gogs_demo.gif)
7+
8+
##### 当前版本:0.2.3 Alpha
9+
10+
## 开发目的
11+
12+
Gogs 完全使用 Go 语言来实现对 Git 数据的操作,实现 **** 依赖,并且支持 Go 语言所支持的 **所有平台**,包括 Linux、Mac OS X 以及 Windows。
13+
14+
更重要的是,您只需要一个可执行文件就能借助 Gogs 快速搭建属于您自己的代码托管服务!
15+
16+
## 项目概览
17+
18+
- 有关项目设计、已知问题、变更日志和路线图,请通过 [Wiki](https://github.com/gogits/gogs/wiki) 查看。
19+
- 您可以到 [Trello Board](https://trello.com/b/uxAoeLUl/gogs-go-git-service) 跟随开发团队的脚步。
20+
- 想要先睹为快?通过 [在线体验](http://try.gogits.org/Unknown/gogs) 或查看 **安装部署 -> 二进制安装** 小节。
21+
- 使用过程中遇到问题?尝试从 [故障排查](https://github.com/gogits/gogs/wiki/Troubleshooting) 页面获取帮助。
22+
23+
## 功能特性
24+
25+
- 活动时间线
26+
- SSH/HTTP(S) 协议支持
27+
- 注册/删除/重命名用户
28+
- 创建/删除/关注/重命名/转移公开仓库
29+
- 仓库浏览器
30+
- Bug 追踪系统
31+
- Gravatar 以及缓存支持
32+
- 邮件服务(注册、Issue)
33+
- 管理员面板
34+
- 支持 MySQL、PostgreSQL 以及 SQLite3(仅限二进制版本)
35+
36+
## 安装部署
37+
38+
在安装 Gogs 之前,您需要先安装 [基本环境](https://github.com/gogits/gogs/wiki/Prerequirements)
39+
40+
然后,您可以通过以下两种方式来安装 Gogs:
41+
42+
- [二进制安装](https://github.com/gogits/gogs/wiki/Install-from-binary): **强烈推荐** 适合体验者和实际部署
43+
- [源码安装](https://github.com/gogits/gogs/wiki/Install-from-source)
44+
45+
## 特别鸣谢
46+
47+
- Logo 基于 [martini-contrib](https://github.com/martini-contrib) 修改而来。
48+
- 基于 [WeTalk](https://github.com/beego/wetalk) 修改的邮件服务和模块设计。
49+
- 基于 [GoBlog](https://github.com/fuxiaohei/goblog) 修改的系统监视状态。
50+
- [beego](http://beego.me) 模块的使用与修改。
51+
- [martini](http://martini.codegangsta.io/) 的路由与中间件机制。
52+
- 感谢 [gobuild.io](http://gobuild.io) 提供二进制编译与下载服务。
53+
54+
## 贡献成员
55+
56+
本项目最初由 [Unknown](https://github.com/Unknwon)[lunny](https://github.com/lunny) 发起,随后 [fuxiaohei](https://github.com/fuxiaohei)[slene](https://github.com/slene) 以及 [skyblue](https://github.com/shxsun) 加入到开发团队。您可以通过查看 [贡献者页面](https://github.com/gogits/gogs/graphs/contributors) 获取完整的贡献者列表。
57+
58+
## 授权许可
59+
60+
Gogs 采用 MIT 开源授权许可证,完整的授权说明已放置在 [LICENSE](https://github.com/gogits/gogs/blob/master/LICENSE) 文件中。

bee.json

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"version": 0,
3+
"gopm": {
4+
"enable": false,
5+
"install": false
6+
},
7+
"go_install": true,
8+
"watch_ext": [],
9+
"dir_structure": {
10+
"watch_all": true,
11+
"controllers": "routers",
12+
"models": "",
13+
"others": [
14+
"modules",
15+
"$GOPATH/src/github.com/gogits/binding",
16+
"$GOPATH/src/github.com/gogits/webdav",
17+
"$GOPATH/src/github.com/gogits/logs",
18+
"$GOPATH/src/github.com/gogits/git",
19+
"$GOPATH/src/github.com/gogits/gfm"
20+
]
21+
},
22+
"cmd_args": [
23+
"web"
24+
],
25+
"envs": []
26+
}

0 commit comments

Comments
 (0)