diff --git a/.all-contributorsrc b/.all-contributorsrc new file mode 100644 index 00000000..d02e5100 --- /dev/null +++ b/.all-contributorsrc @@ -0,0 +1,115 @@ +{ + "projectName": "ego", + "projectOwner": "gotomicro", + "repoType": "github", + "repoHost": "https://github.com", + "files": [ + "README.md" + ], + "imageSize": 64, + "commit": false, + "commitConvention": "none", + "contributorTemplate": "\">\" width=\"<%= options.imageSize %>px;\" alt=\"\"/>
<%= contributor.name %>
", + "contributors": [ + { + "login": "askuy", + "name": "askuy", + "avatar_url": "https://avatars.githubusercontent.com/u/14119383?v=4", + "profile": "https://github.com/askuy", + "contributions": [ + "code" + ] + }, + { + "login": "sevennt", + "name": "Wei Zheng", + "avatar_url": "https://avatars.githubusercontent.com/u/10843736?v=4", + "profile": "https://github.com/sevennt", + "contributions": [ + "code" + ] + }, + { + "login": "shaoyuan1943", + "name": "shaoyuan", + "avatar_url": "https://avatars.githubusercontent.com/u/3054782?v=4", + "profile": "https://zhuanlan.zhihu.com/c_1209048962315108352", + "contributions": [ + "code" + ] + }, + { + "login": "wujunze", + "name": "Panda", + "avatar_url": "https://avatars.githubusercontent.com/u/12997869?v=4", + "profile": "https://wujunze.com/", + "contributions": [ + "code" + ] + }, + { + "login": "NeoyeElf", + "name": "刘文哲", + "avatar_url": "https://avatars.githubusercontent.com/u/6872731?v=4", + "profile": "https://github.com/NeoyeElf", + "contributions": [ + "code" + ] + }, + { + "login": "zhjunjun", + "name": "zhangjunjun", + "avatar_url": "https://avatars.githubusercontent.com/u/16819579?v=4", + "profile": "https://github.com/zhjunjun", + "contributions": [ + "code" + ] + }, + { + "login": "devincd", + "name": "devincd", + "avatar_url": "https://avatars.githubusercontent.com/u/7844367?v=4", + "profile": "https://github.com/devincd", + "contributions": [ + "code" + ] + }, + { + "login": "flycash", + "name": "Ming Deng", + "avatar_url": "https://avatars.githubusercontent.com/u/9923838?v=4", + "profile": "https://www.jianshu.com/u/f2b47e5528d8", + "contributions": [ + "code" + ] + }, + { + "login": "cute-angelia", + "name": "Angelia", + "avatar_url": "https://avatars.githubusercontent.com/u/26561606?v=4", + "profile": "https://github.com/cute-angelia", + "contributions": [ + "code" + ] + }, + { + "login": "flutterWang", + "name": "Wbofeng", + "avatar_url": "https://avatars.githubusercontent.com/u/54163491?v=4", + "profile": "https://www.yuque.com/wbofeng", + "contributions": [ + "code" + ] + }, + { + "login": "clannadxr", + "name": "clannadxr", + "avatar_url": "https://avatars.githubusercontent.com/u/9847143?v=4", + "profile": "https://github.com/clannadxr", + "contributions": [ + "code" + ] + } + ], + "contributorsPerLine": 7 +} diff --git a/.gitignore b/.gitignore index 439242d4..f9dd1467 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,8 @@ .idea bin -logs \ No newline at end of file +logs + +node_modules +.vscode +yarn.lock +package-lock.json diff --git a/README.md b/README.md index 3190de01..2abd6006 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,7 @@ ## EGO + +[![All Contributors](https://img.shields.io/badge/all_contributors-11-orange.svg?style=flat-square)](#contributors-) + [![Go](https://github.com/gotomicro/ego/workflows/Go/badge.svg?branch=master)](https://github.com/gotomicro/ego/actions) [![Go Report Card](https://goreportcard.com/badge/github.com/gotomicro/ego)](https://goreportcard.com/report/github.com/gotomicro/ego) [![codecov](https://codecov.io/gh/gotomicro/ego/branch/master/graph/badge.svg)](https://codecov.io/gh/gotomicro/ego) @@ -159,4 +162,36 @@ go run main.go --config=config.toml 使用scripts文件夹里的[包编译](examples/build),可以看到优雅的version提示 -![图片](./docs/images/version.png) \ No newline at end of file +![图片](./docs/images/version.png) + +## Contributors + +Thanks for these wonderful people: + + + + + + + + + + + + + + + + + + + + +

askuy

Wei Zheng

shaoyuan

Panda

刘文哲

zhangjunjun

devincd

Ming Deng

Angelia

Wbofeng

clannadxr
+ + + + + + +This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome! \ No newline at end of file diff --git a/package.json b/package.json new file mode 100644 index 00000000..02062c9a --- /dev/null +++ b/package.json @@ -0,0 +1,5 @@ +{ + "devDependencies": { + "all-contributors-cli": "^6.20.0" + } +}