{"id":24941383,"url":"https://github.com/xhl592576605/front-engine-cli","last_synced_at":"2026-05-10T19:21:11.839Z","repository":{"id":47767337,"uuid":"462763660","full_name":"xhl592576605/front-engine-cli","owner":"xhl592576605","description":"front-emgine-cli   支持从github，gitlab，gitee，自定义（直接）中，将项目克隆到本地，作为自己的项目，进行开发","archived":false,"fork":false,"pushed_at":"2022-04-15T09:59:54.000Z","size":7381,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-02T05:57:02.428Z","etag":null,"topics":["cli","gitee","github","gitlab"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/xhl592576605.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-02-23T14:13:29.000Z","updated_at":"2023-02-13T21:25:07.000Z","dependencies_parsed_at":"2022-09-26T20:01:04.967Z","dependency_job_id":null,"html_url":"https://github.com/xhl592576605/front-engine-cli","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xhl592576605%2Ffront-engine-cli","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xhl592576605%2Ffront-engine-cli/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xhl592576605%2Ffront-engine-cli/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xhl592576605%2Ffront-engine-cli/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/xhl592576605","download_url":"https://codeload.github.com/xhl592576605/front-engine-cli/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246072199,"owners_count":20719270,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cli","gitee","github","gitlab"],"created_at":"2025-02-02T18:22:32.635Z","updated_at":"2026-05-10T19:21:06.784Z","avatar_url":"https://github.com/xhl592576605.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# front-engine-cli 脚手架\n\u003e 支持从github，gitlab，gitee, 自定义(direct)中，clone项目到本地，作为自己的项目，进行开发\n\n\u003cimg src=\"docs/fengine.gif\" alt=\"temp-cli\"  /\u003e\n\n# 命令\n\n``` bash\nUsage:\n  $ fengine \u003ccommand\u003e [options]\n\nCommands:\n  conf            cli  config\n  create \u003cname\u003e  create app\n\nFor more info, run any command with the `--help` flag:\n  $ fengine conf --help\n  $ fengine create --help\n\nOptions:\n  -v, --version  Display version number \n  -h, --help     Display this message \n\n```\n\n\n## 配置\n\u003e 内置github，gitlab，gitee的配置\n\n```\nUsage:\n  $ fengine conf\n\nOptions:\n  -a, --add     add conf \n  -u, --update  update conf \n  -d, --delete  delete conf \n  -s, --show    show conf \n  -h, --help    Display this message \n\n```\n\u003cimg src=\"docs/fengine-conf.gif\" alt=\"temp-cli\"  /\u003e\n\n- name: 配置名称\n- reposSource: 远端配置（github，gitlab，gitee，direct）\n- ssh：ssh的地址，只有direct，才需要填写 例子（ssh://git@192.168.104.73:10122/）\n- api: 请求组织，用户，仓库，分支，tag的信息api，比如github=\u003e https:/github.com/\n- toeknKey： 请求接口头部的token的key值，只在reposSource=direct生效\n- token: 请求接口需要的token，只在reposSource=direct生效\n- options： 若是自定义，需要设置组织，用户，仓库，分支，tag的具体api地址\n  比如（花括号的是动态变量，创建的时候会自动替换值，具体看下面）\n\n  ``` json\n  {\n    orgRepos:\"/api/v4/groups/{name}/projects\",\n    userRepos: \"/api/v4/users/{name}/projects\",\n    orgBranches:\"/api/v4/projects/{id}/repository/branches\",\n    userBranches:\"/api/v4/projects/{id}/repository/branches\",\n    orgTags:\"/api/v4/projects/{id}/repository/tags\",\n    userTags:\"/api/v4/projects/{id}/repository/tags\"\n  }\n  ```\n  - 其中orgRepos与userRepos，有代替值\n  ``` json\n  {\n    name:\"组织名或用户名\"\n  }\n  ```\n  - 其中orgBranches与userBranches，有代替值\n   ``` json\n  {\n    name:\"组织名或用户名\"，\n    repo：\"仓库名\"，\n    id：\"仓库id\"\n  }\n  ```\n  - 其中orgTags与userTags，有代替值\n  ``` json\n  {\n    name:\"组织名或用户名\"，\n    repo：\"仓库名\"，\n    id：\"仓库id\"\n  }\n  ```\n\n## 创建 app\n\u003cimg src=\"docs/fengine.gif\" alt=\"temp-cli\"  /\u003e\n\n``` bash\nUsage:\n  $ fengine create \u003cname\u003e\n\nOptions:\n  -h, --help  Display this message\n```\n\n- name: app名称\n- description： 包描述\n- conf: 选择配置\n- installCommand； 安装依赖命令\n- type： 组织或者用户\n- group： 组织名或者用户名\n- repos： 仓库名\n- branchType：分支 还是 tag\n- branch： 分支信息 还是 tag信息","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxhl592576605%2Ffront-engine-cli","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fxhl592576605%2Ffront-engine-cli","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxhl592576605%2Ffront-engine-cli/lists"}