2020-11-30 11:39:28 +08:00
|
|
|
|
|
2020-11-30 11:50:41 +08:00
|
|
|
|
# 本地开发部署
|
2020-11-26 15:16:23 +08:00
|
|
|
|
|
2020-11-30 11:39:28 +08:00
|
|
|
|
## Depends Versions
|
|
|
|
|
|
|
|
|
|
* Ruby 2.4.5
|
|
|
|
|
|
|
|
|
|
* Rails ~> 5.2
|
|
|
|
|
|
|
|
|
|
* MySql ~> 5.6
|
|
|
|
|
|
|
|
|
|
* Redis 5+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
## Steps
|
|
|
|
|
|
2020-11-26 15:16:23 +08:00
|
|
|
|
### 1. 安装依赖包
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
bundle install
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### 2. 配置初始化文件
|
|
|
|
|
进入项目根目录执行一下命令:
|
|
|
|
|
|
|
|
|
|
```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
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### 3. 配置gitea服务(可选)
|
|
|
|
|
**如需要部署自己的gitea平台,请参考gitea官方平台:https://docs.gitea.io/zh-cn/install-from-binary/**
|
|
|
|
|
|
2020-12-24 10:07:36 +08:00
|
|
|
|
**因目前gitea平台api受限,暂时推荐从forge平台获取gitea部署文件进行部署:https://forgeplus.trustie.net/projects/jasder/gitea-binary**
|
2020-11-26 15:16:23 +08:00
|
|
|
|
|
|
|
|
|
#### 配置gitea服务步骤
|
|
|
|
|
1. 部署gitea服务,并注册root账户
|
|
|
|
|
2. 修改forge平台的 config/configuration.yml中的gitea服务指向地址,如:
|
|
|
|
|
|
|
|
|
|
```ruby
|
|
|
|
|
gitea:
|
|
|
|
|
access_key_id: 'root'
|
|
|
|
|
access_key_secret: 'password'
|
|
|
|
|
domain: 'http://www.gitea.example.com'
|
|
|
|
|
base_url: '/api/v1'
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### 4. 安装redis环境
|
|
|
|
|
**请自行搜索各平台如何安装部署redis环境**
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### 5. 创建数据库
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
rails db:create
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### 6. 导入数据表结构
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
bundle exec rake sync_table_structure:import_csv
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### 7. 执行migrate迁移文件
|
|
|
|
|
**开发环境为development, 生成环境为production**
|
|
|
|
|
```bash
|
|
|
|
|
rails db:migrate RAILS_ENV=development
|
|
|
|
|
```
|
|
|
|
|
|
2020-12-28 13:42:59 +08:00
|
|
|
|
### 8. clone前端代码
|
|
|
|
|
**将前端代码克隆到public/react目录下,目录结构应该是: public/react/build**
|
|
|
|
|
```bash
|
|
|
|
|
git clone https://git.trustie.net/jasder/build.git
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### 9. 启动redis(此处已mac系统为例)
|
2020-11-26 15:16:23 +08:00
|
|
|
|
```bash
|
|
|
|
|
redis-server&
|
|
|
|
|
```
|
|
|
|
|
|
2020-12-28 13:42:59 +08:00
|
|
|
|
### 10. 启动sidekiq
|
2020-11-26 15:16:23 +08:00
|
|
|
|
**开发环境为development, 生成环境为production**
|
|
|
|
|
```bash
|
|
|
|
|
bundle exec sidekiq -C config/sidekiq.yml -e production -d
|
|
|
|
|
```
|
|
|
|
|
|
2020-12-28 13:42:59 +08:00
|
|
|
|
### 1`. 启动rails服务
|
2020-11-26 15:16:23 +08:00
|
|
|
|
```bash
|
|
|
|
|
rails s
|
|
|
|
|
```
|
|
|
|
|
|
2020-12-28 13:42:59 +08:00
|
|
|
|
### 12. 浏览器访问
|
2020-11-26 15:16:23 +08:00
|
|
|
|
在浏览器中输入如下地址访问:
|
|
|
|
|
```bash
|
|
|
|
|
http://localhost:3000/
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
---
|