honeycomb 项目搭建

1.开发环境搭建

参考以下 路径的安装步骤(先把下面的介绍看完,再去安装)
https://www.yuque.com/honeycomb/honeycomb/dev-win

  • 安装node(最好在版本8以上)

  • 安装make(安装方法见上面网址)或者yarn

不安装make,直接在根目录和assets目录下分别执行yarn也是一样的

  • 安装git bash

  • 安装vscode (非必须)

打开文件->首选项->设置,把以下两段配置加入到用户设置里
*记得把路径修改成你Git所安装的目录,比如是在C:\\lib\\git*

  "terminal.integrated.shell.windows": "C:\\lib\\git\\bin\\bash.exe",
 // 搜索时忽略以下路径的文件
    "search.exclude": {
        "**/node_modules": true,
        "**/bower_components": true,
        "**/release": true,
        "**/dist": true
    },
    // 在资源管理器中隐藏符合规则的文件
    "files.exclude": {
        "**/.idea": true,
        "**/node_modules/.*@*": true,
        "**/node_modules/_*@*@*": true
    }
honeycomb 项目搭建_第1张图片
配置代码放在这疙瘩,.png
  • 安装honeycomb cli

 npm install -g honeycomb-cli

2.下载项目

从svn路径上下载下来后
在根目录下执行yarn,,再进入assets文件夹下执行yarn生成两个node_modules文件夹 如下

yarn
honeycomb 项目搭建_第2张图片
modules-1 所在路径.png

honeycomb 项目搭建_第3张图片
modules-2 所在路径.png

3.启动项目

进入项目根目录,鼠标右键打开gitbash ,在项目根目录下执行honeycomb start命令;


honeycomb 项目搭建_第4张图片
honeycomb start.png

执行成功后 控制台会有compiled successfully提示,往上翻 会有一段绿色的url地址,按住alt键,点击url就会在浏览器里打开项目了;

honeycomb 项目搭建_第5张图片
compiled successfully.png

honeycomb 项目搭建_第6张图片
绿色的url.png

你可能感兴趣的:(honeycomb 项目搭建)