CLI
本地安装
curl -fsSL fireboom.io/install | bash -s project-name -t init-todo --cnproject-name
├─ .gitignore
├─ .gitpod.yml
├─ README.md
├─ custom-go # golang 钩子的目录 见下文
├─ custom-ts # typescript 钩子的目录 见下文
├─ exported # 生成的临时目录
│ └─ introspection
│ ├─ system
│ │ └─ schema.graphql
│ └─ todo
│ ├─ schema.graphql
│ └─ schema.prisma
├─ store # 元数据存储目录
│ ├─ config # 全局配置
│ │ ├─ global.operation.json
│ │ └─ global.setting.json
│ ├─ datasource #数据源配置,每个数据源1个json
│ │ ├─ system.json
│ │ └─ todo.json
│ ├─ operation # OPERATION存储,.json和.graphql成对存在
│ │ └─ Todo
│ │ ├─ CreateOneTodo.graphql
│ │ ├─ CreateOneTodo.json
│ │ ├─ GetManyTodo.graphql
│ │ ├─ GetManyTodo.json
│ └─ role # 角色存储,每个角色1个json
│ ├─ admin.json
│ └─ user.json
├─ template # SDK模板目录
│ ├─ golang-server # golang 钩子模板
│ └─ node-server # TS 钩子模板
├─ update-fb.sh
└─ upload # 上传文件目录
├─ oas
│ └─ system.json
└─ sqlite
└─ todo.db开发模式
帮助命令
指定面板端口
指定环境变量
开启面板保护
生产模式
帮助命令
开启swagger文档
重新生成秘钥
构建命令
升级飞布
最后更新于