Go2o 正在参加 2021 年度 OSC 中国开源项目评选,请投票支持!
Go2o 在 2021 年度 OSC 中国开源项目评选 中已获得 {{ projectVoteCount }} 票,请投票支持!
2021 年度 OSC 中国开源项目评选 正在火热进行中,快来投票支持你喜欢的开源项目!
2021 年度 OSC 中国开源项目评选 >>> 中场回顾
Go2o 获得 2021 年度 OSC 中国开源项目评选「最佳人气项目」 !
授权协议 Apache
开发语言 Google Go
操作系统 跨平台
软件类型 开源软件
开源组织
地区 国产
投 递 者 刘铭88
适用人群 未知
收录时间 2014-12-26

软件简介

What's Go2o

Golang combine simple o2o DDD domain-driven design realization, including multi-channel (businesses), multi-store, multi-member commodity, Promotions, orders, coupons implementation also includes a micro framework in package "gof", providing ORM, Reporting, Web Framework,Rpc Framework.

Golang 结合DDD领域驱动设计的简单o2o实现,包含多渠道(商家),多门店,多会员.商品, 促销,订单,优惠券的实现,依赖一个微型框架atnet/gof,提供ORM,报表,Web Framework,Rpc Framework.

Deploy

1.Complied

git clone https://github.com/atnet/go2o.git /home/usr/go/src/go2o
    export GOPATH=$GOPATH:/home/usr/go/
    cd /home/usr/go
    go build server.go

2.Running Service

Usage of ./server:
      -debug=false: enable debug
      -help=false: command usage
      -mode="sh": boot mode.'h'- boot http service,'s'- boot socket service
      -port=1001: web server port
      -port2=1002: socket server port

3.Add http proxy by nginx

server {
          listen          80;
          server_name     *.ts.com;
          location / {
             proxy_pass   http://localhost:1002;
             proxy_set_header Host $host;
          }
    }

4.Add test hosts

vi /etc/hosts
    127.0.0.1   wly.ts.com static.ts.com img.ts.com partner.ts.com
    member.ts.com www.ts1.com www.ts2.com api.ts.com wsapi.ts.com

Access Entry

Partner Management

partner.ts.com

Member Center

member.ts.com

Partner Sales

wly.ts.com

you can add host to table "pt_host" use MySql Workbench.

展开阅读全文

代码

评论

点击加入讨论🔥(1) 发布并加入讨论🔥
暂无内容
发表了博客
{{o.pubDate | formatDate}}

{{formatAllHtml(o.title)}}

{{parseInt(o.replyCount) | bigNumberTransform}}
{{parseInt(o.viewCount) | bigNumberTransform}}
没有更多内容
暂无内容
发表了问答
{{o.pubDate | formatDate}}

{{formatAllHtml(o.title)}}

{{parseInt(o.replyCount) | bigNumberTransform}}
{{parseInt(o.viewCount) | bigNumberTransform}}
没有更多内容
暂无内容
暂无内容
1 评论
39 收藏
分享
OSCHINA
登录后可查看更多优质内容
返回顶部
顶部