master
hanJoker 2 years ago
commit e7f67137df

17
.gitignore vendored

@ -0,0 +1,17 @@
# Binaries for programs and plugins
*.exe
*.exe~
*.dll
*.so
*.dylib
# Test binary, built with `go test -c`
*.test
# Output of the go coverage tool, specifically when used with LiteIDE
*.out
# Dependency directories (remove the comment below to include it)
# vendor/
.idea

8
.idea/.gitignore vendored

@ -0,0 +1,8 @@
# Default ignored files
/shelf/
/workspace.xml
# Editor-based HTTP Client requests
/httpRequests/
# Datasource local storage ignored files
/dataSources/
/dataSources.local.xml

@ -0,0 +1,5 @@
<component name="ProjectCodeStyleConfiguration">
<state>
<option name="PREFERRED_PROJECT_CODE_STYLE" value="Default" />
</state>
</component>

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="WEB_MODULE" version="4">
<component name="Go" enabled="true" />
<component name="NewModuleRootManager">
<content url="file://$MODULE_DIR$" />
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/laoma.iml" filepath="$PROJECT_DIR$/.idea/laoma.iml" />
</modules>
</component>
</project>

@ -0,0 +1,20 @@
# 老马代驾
## 运行方法
安装 docker
## 目录结构
```shell
/backend 后端
/backend/order 订单服务
/backend/... 同上
/customer 顾客端
/customer/web 顾客 web 端
/customer/android 顾客 Android 端
/customer/ios 顾客 iOS 端
/driver 司机端
/driver/web 司机 web 端
/driver/android 司机 Android 端
/driver/ios 司机 iOS 端
/manager 管理端
/manager/web 管理 web 端
```

@ -0,0 +1,10 @@
# 老马代驾后端
微服务架构,由多个服务构成
## 服务列表
* customer 顾客服务
* driver 司机服务
* manager 管理员服务
* order 订单服务
* payment 支付服务
* route 路线服务
* sms 短信服务

@ -0,0 +1 @@
# 顾客服务

@ -0,0 +1 @@
# 司机服务

@ -0,0 +1 @@
# 管理员服务

@ -0,0 +1 @@
# 订单服务

@ -0,0 +1 @@
# 支付服务

@ -0,0 +1 @@
# 路线服务

@ -0,0 +1 @@
# 短信服务

@ -0,0 +1 @@
# 顾客端

@ -0,0 +1 @@
# 乘客端 web

@ -0,0 +1 @@
# 司机端

@ -0,0 +1 @@
# 司机端 web

@ -0,0 +1 @@
# 管理端

@ -0,0 +1 @@
# 管理端 web
Loading…
Cancel
Save