Go to file
wuchao 79c642932c first commit 2024-06-17 14:18:39 +08:00
app first commit 2024-06-17 14:18:39 +08:00
bootstrap first commit 2024-06-17 14:18:39 +08:00
build first commit 2024-06-17 14:18:39 +08:00
config first commit 2024-06-17 14:18:39 +08:00
docs first commit 2024-06-17 14:18:39 +08:00
event first commit 2024-06-17 14:18:39 +08:00
logs first commit 2024-06-17 14:18:39 +08:00
rpc first commit 2024-06-17 14:18:39 +08:00
.env.example first commit 2024-06-17 14:18:39 +08:00
.gitignore first commit 2024-06-17 14:18:39 +08:00
README.md first commit 2024-06-17 14:18:39 +08:00
go.mod first commit 2024-06-17 14:18:39 +08:00
go.sum first commit 2024-06-17 14:18:39 +08:00
main.go first commit 2024-06-17 14:18:39 +08:00

README.md

Snow

Snow是一套简单易用的Go语言业务框架整体逻辑设计简洁支持HTTP服务、队列调度和任务调度等常用业务场景模式。

Quick start

Build

sh build/shell/build.sh

Run

1. build/bin/snow -a api  #启动Api服务
2. build/bin/snow -a cron #启动Cron定时任务服务
3. build/bin/snow -a job  #启动队列调度服务
4. build/bin/snow -a command -m test  #执行名称为test的脚本任务

Documents