forgeplus/README.md

181 lines
6.2 KiB
Markdown
Raw Permalink Normal View History

2022-02-24 16:10:17 +08:00
# GitLink - CCF开源创新服务平台
2020-10-13 16:29:49 +08:00
2022-02-24 16:10:17 +08:00
GitLink确实开源是中国计算机学会CCF官方指定的开源创新服务平台旨在以“为开源创新服务”为使命以“成为开源创新的汇聚地”为愿景秉承“创新、开放、协作、共享”的价值观致力于为大规模开源开放协同创新助力赋能打造创新成果孵化和新工科人才培养的开源创新生态
2020-10-13 16:29:49 +08:00
2022-02-24 16:10:17 +08:00
<center>
2022-02-24 16:20:17 +08:00
<img src="https://code.gitlink.org.cn/young/forgeplus/raw/branch/master/docs/figs/gitlink.png?raw=true" width=80% /></center>
2022-02-24 16:10:17 +08:00
## 特色功能
2020-10-13 16:29:49 +08:00
2022-02-24 16:10:17 +08:00
- **分布式协作开发**基于Git打造分布式代码托管环境提供免费公、私有代码仓库支持在线文件编辑、代码分支管理、协作贡献统计、代码仓库复刻Fork、贡献合并请求PR、群智贡献审阅等功能让您的项目在这里健康、快速的成长
2020-10-13 16:29:49 +08:00
- **一站式过程管理**提供疑修Issue、里程碑、通知提醒、标签归档等多样化任务管理工具支持各类开发任务的发布、指派与跟踪同时提供在线Wiki文档、组织多粒度管理等功能为您搭建一站式的项目过程管理环境让您的团队协作更高效、过程更透明
2020-10-13 16:29:49 +08:00
2022-02-24 16:10:17 +08:00
- **高效流水线运维**融合DevOps思想提供轻量级的工作流引擎Engine打通编码、测试、构建、部署等开发运维环节支持自定义配置、代码静态扫描、构建自动触发、容器镜像托管等功能同时支持接入第三方运维工具让您的代码更加快速、可靠地形成高质量的产品
2020-03-09 00:40:16 +08:00
2022-02-24 16:10:17 +08:00
- **多层次代码分析**提供软件软代码和芯片RTL代码的溯源分析、文件级和组件级许可证识别及风险分析、输入性开源漏洞检测和加固建议支持分析结果的多层次可视化展示帮助您实施有效开源治理厘清代码引用链发现并消除漏洞感染链为安全合规的开源引用保驾护航
2020-03-09 00:40:16 +08:00
2022-02-24 16:10:17 +08:00
- **多维度用户画像**:实时采集和分析平台中的各类开源资源数据,搭建多维度用户画像评估系统,提供开发活动统计、贡献度日历、用户能力建模、角色与专业定位分析等功能,让您在个人主页展示开发动态与创新能力!
## 部署流程
### 依赖库
2021-03-30 15:15:17 +08:00
* Ruby 2.4.5
* Rails ~> 5.2
* MySql ~> 5.6
* Redis 5+
2021-04-23 17:32:45 +08:00
* imagemagick
2021-03-30 15:15:17 +08:00
2022-02-24 16:10:17 +08:00
### 步骤
2021-03-30 15:15:17 +08:00
2022-02-24 16:10:17 +08:00
1克隆稳定版本
2021-03-30 15:15:17 +08:00
```
2022-02-24 16:10:17 +08:00
git clone -b master https://gitlink.org.cn/Gitlink/forgeplus.git
2021-03-30 15:15:17 +08:00
```
2022-02-24 16:10:17 +08:00
2安装依赖包
2020-03-09 00:40:16 +08:00
```bash
2021-03-30 15:15:17 +08:00
cd forgeplus && bundle install
2020-03-09 00:40:16 +08:00
```
2022-02-24 16:10:17 +08:00
3配置初始化文件进入项目根目录执行以下命令
2020-03-09 00:40:16 +08:00
```bash
cp config/configuration.yml.example config/configuration.yml
cp config/database.yml.example config/database.yml
touch config/redis.yml
touch config/elasticsearch.yml
```
2022-02-24 16:10:17 +08:00
4配置数据库数据库配置信息请查看/config/database.yml文件项目默认采用mysql数据库, 如需更改,请自行修改配置信息,默认配置如下
2021-03-31 10:08:20 +08:00
```bash
default: &default
adapter: mysql2
host: 127.0.0.1
encoding: utf8
username: root
password: 123456
```
5配置gitea服务(可选)如需要部署自己的gitea平台请参考[gitea官方平台文档](https://docs.gitea.io/zh-cn/install-from-binary/)。因目前gitea平台api受限暂时推荐从forge平台获取[gitea部署文件](https://www.gitlink.org.cn/Gitlink/gitea-binary)进行部署
2020-06-04 16:34:10 +08:00
2022-02-24 16:10:17 +08:00
- 配置gitea服务步骤
-- 部署gitea服务并注册root账户
-- 修改forge平台的 config/configuration.yml中的gitea服务指向地址
2020-06-04 16:34:10 +08:00
```ruby
gitea:
access_key_id: 'root'
access_key_secret: 'password'
domain: 'http://www.gitea.example.com'
base_url: '/api/v1'
```
2022-02-24 16:10:17 +08:00
6安装redis环境请自行搜索各平台如何安装部署redis环境
2020-06-04 16:34:10 +08:00
2022-02-24 16:10:17 +08:00
7安装imagemagick插件
2021-04-23 17:32:45 +08:00
- Mac OS X
```bash
brew install imagemagick ghostscript
```
- Linux
```bash
sudo apt-get install -y imagemagick
```
2020-06-04 16:34:10 +08:00
2022-02-24 16:10:17 +08:00
8创建数据库开发环境为development 生成环境为production
2020-03-09 00:40:16 +08:00
```bash
2021-03-31 12:43:06 +08:00
rails db:create RAILS_ENV=development
2020-03-09 00:40:16 +08:00
```
2022-02-24 16:10:17 +08:00
9导入数据表结构
2020-03-09 00:40:16 +08:00
```bash
bundle exec rake sync_table_structure:import_csv
```
2022-02-24 16:10:17 +08:00
10执行migrate迁移文件开发环境为development 生成环境为production
2020-03-09 00:40:16 +08:00
```bash
rails db:migrate RAILS_ENV=development
```
2022-02-24 16:10:17 +08:00
11clone前端代码将前端代码克隆到public/react目录下目录结构应该是: public/react/build
2021-03-30 15:15:17 +08:00
```bash
2022-02-24 16:52:01 +08:00
git clone -b standalone https://gitlink.org.cn/Gitlink/build.git
2021-03-30 15:15:17 +08:00
```
2022-02-24 16:10:17 +08:00
12启动redis(此处以macOS系统为例)
2020-06-04 16:34:10 +08:00
```bash
redis-server&
```
2022-02-24 16:10:17 +08:00
13启动sidekiq开发环境为development 生成环境为production
2020-06-04 16:34:10 +08:00
```bash
bundle exec sidekiq -C config/sidekiq.yml -e production -d
```
2022-02-24 16:10:17 +08:00
14启动rails服务
2020-03-09 00:40:16 +08:00
```bash
rails s
```
2022-02-24 16:10:17 +08:00
15浏览器访问在浏览器中输入如下地址访问
2021-03-31 16:08:00 +08:00
```bash
http://localhost:3000/
```
2022-02-24 16:10:17 +08:00
16其他说明通过页面注册以第一个用户为平台管理员用户
2020-03-09 00:40:16 +08:00
2022-02-24 16:10:17 +08:00
## 页面展示
2020-10-14 10:35:33 +08:00
2022-02-24 16:10:17 +08:00
- 项目列表
<center>
2022-02-24 16:20:17 +08:00
<img src="https://code.gitlink.org.cn/young/forgeplus/raw/branch/master/docs/figs/project_list.png?raw=true" width=50% />
2022-02-24 16:10:17 +08:00
</center>
- 代码仓库
<center>
2022-02-24 16:20:17 +08:00
<img src="https://code.gitlink.org.cn/young/forgeplus/raw/branch/master/docs/figs/repo.png?raw=true" width=50% />
2022-02-24 16:10:17 +08:00
</center>
2020-10-13 16:29:49 +08:00
- 任务管理
2022-02-24 16:10:17 +08:00
<center>
2022-02-24 16:20:17 +08:00
<img src="https://code.gitlink.org.cn/young/forgeplus/raw/branch/master/docs/figs/issues.png?raw=true" width=50% />
2022-02-24 16:10:17 +08:00
</center>
- 合并请求
<center>
2022-02-24 16:20:17 +08:00
<img src="https://code.gitlink.org.cn/young/forgeplus/raw/branch/master/docs/figs/PR.png?raw=true" width=50% />
2022-02-24 16:10:17 +08:00
</center>
- 引擎配置
<center>
2022-02-24 16:20:17 +08:00
<img src="https://code.gitlink.org.cn/young/forgeplus/raw/branch/master/docs/figs/engine.png?raw=true" width=50% />
2022-02-24 16:10:17 +08:00
</center>
2020-03-09 00:40:16 +08:00
2020-12-04 18:15:19 +08:00
## 贡献代码
2022-02-24 16:10:17 +08:00
我们期待您向GitLink提交贡献在您贡献时请遵循流程[【Wiki文档-GitLink协作开发流程】](https://www.gitlink.org.cn/Gitlink/forgeplus/wiki "【Wiki文档-GitLink协作开发流程】")
#### 指导文档
- [API文档](https://www.gitlink.org.cn/docs/api)
- [Git常用命令](https://git-scm.com/)
2020-12-04 18:15:19 +08:00
2022-02-24 16:10:17 +08:00
## 许可证协议