-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
17 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,29 @@ | ||
|
||
### 项目介绍 | ||
goserver 是一个组件式后台服务,把常用的功能用配置的方式加载,如数据库CRUD,认证码 ... | ||
goserver 把存储过程映射成JSON接口.当然除了主要功能以外还有些许其它功能 | ||
* 认证码 | ||
* 定时任务(执行SQL,爬虫) | ||
* 模版 | ||
* 文件上传 | ||
* Web服务,静态资源 | ||
* ......... | ||
|
||
更多的项目文档请参考: | ||
|
||
https://www.itgeek.top/p/goserver | ||
|
||
```angular2html | ||
goserver 配置文件 | ||
``` | ||
# goserver是什么? | ||
是一个组件式后台服务,把常用的功能用配置的方式按须加载,多个项目可以复用同一个程序 | ||
|
||
# 目标 | ||
减少90%的后台代码,为了使后台开发更简单,增加复用性,让程序员有更多的精力关注业务逻辑, | ||
``` | ||
|
||
|
||
# 使用需要什么技术 | ||
sql,能明白示例,项目为go项目,你可以不懂go,下载对应平台的二进制包即可 | ||
sql | ||
* 项目为go项目,你可以不懂go,下载对应平台的二进制包即可 | ||
|
||
# 本项目适合人群 | ||
* 想快速开发 | ||
* 前后端分离 | ||
* 接口 | ||
* 大量的SQL操作 | ||
|