Commit 2fe43887 by mushishixian

优化

parent cd965533
Showing with 10 additions and 6 deletions
...@@ -2,7 +2,6 @@ ...@@ -2,7 +2,6 @@
# ide # ide
.idea .idea
*.properties *.properties
*.iml
*.exe *.exe
*.exe~ *.exe~
gowatch.yml gowatch.yml
\ No newline at end of file
...@@ -4,20 +4,26 @@ ...@@ -4,20 +4,26 @@
#### 该示例的项目名称为 : go-supplier-sync , 如果你要使用,请自行替换成你的项目名称 #### 该示例的项目名称为 : go-supplier-sync , 如果你要使用,请自行替换成你的项目名称
### 1.clone项目 ### 1.clone项目
git clone ssh://git@119.23.72.7:22611/sunlong_v5/ichunt_golang_demo.git git clone ssh://git@119.23.72.7:22611/sunlong_v5/ichunt_golang_demo.git
### 2.修改项目文件夹名称
### 2.复制项目
1.将ichunt_golang_demo复制一份成你的自己的项目,比如go-supplier-sync
2.删除.git文件夹,重新初始化git
### 3.修改项目文件夹名称
1.将 ichunt_golang_demo 改成 go-supplier-sync 1.将 ichunt_golang_demo 改成 go-supplier-sync
2.编辑器批量修改包名 : ichunt_golang_demo/ => go-supplier-sync/ 2.编辑器批量修改包名 : ichunt_golang_demo/ => go-supplier-sync/
### 3.修改go.mod文件(重要) ### 4.修改go.mod文件(重要)
一定要修改go.mod文件,要不然无法跑起来 一定要修改go.mod文件,要不然无法跑起来
把go.mod的第一行 : module go-supplier-sync 修改成 module go-supplier-sync 把go.mod的第一行 : module go-supplier-sync 修改成 module go-supplier-sync
### 4.修改http监听地址 ### 5.修改http监听地址
config/proxy.toml.http.addr 修改成你的ip地址或者本地127.0.0.1 config/proxy.toml.http.addr 修改成你的ip地址或者本地127.0.0.1
### 5.项目启动 ### 6.项目启动
go run ./cmd/main.go go run ./cmd/main.go
go run ./cmd/main.go -config=./config/dev/ -logdir = ./logs/ go run ./cmd/main.go -config=./config/dev/ -logdir = ./logs/
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment