repositorypackage
0.0.0-20230521142435-f16f5cbd36a0
Repository: https://github.com/golangdream/iceberg.git
Documentation: pkg.go.dev
# Packages
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
# README
iceberg
一个方便快速的web开发框架
开始
参考 https://github.com/GoLangDream/iceberg-cli 使用命令行工具开始
新建一个项目
iceberg new test_project
其他一些命令
iceberg g m create_user # 生成一个migration
iceberg g model user name:string age:uint # 生成一个模型
iceberg g controller user index show # 生成一个controller 和 对应的 action
运行
iceberg run