IntelliJ IDEA 注册码、导入项目

一. 使用 IntelliJ IDEA导入工程

  • 在项目bgcloud目录下运行命令 gradle

  • 安装IntelliJ IDEA 15.0,前往http://idea.iteblog.com/生成注册码

获取注册码链接http://idea.iteblog.com/

IntelliJ IDEA 注册码、导入项目_第1张图片
  • 导入bgcloud项目到IntelliJ IDEA
    • import project

二. 替换

  • npm源替换为阿里

    • 命令:npm config set registry https://registry.npm.taobao.org

    • 命令:npm info underscore

  • 或者阿里的cnpm替换

    • 命令:npm install -g cnpm --registry=https://registry.npm.taobao.org
  • bower 的请求协议替换

    • 命令:git config --global url."https://".insteadOf git://

三. 配置信息参数

  • 项目导入后,右击lib目录,点击Add as Library...

  • 具体配置见下图

点击Edit,添加gulp和tomcat;


IntelliJ IDEA 注册码、导入项目_第2张图片

先点击左上+ 添加gulp;


IntelliJ IDEA 注册码、导入项目_第3张图片

添加tomcat;
IntelliJ IDEA 注册码、导入项目_第4张图片
IntelliJ IDEA 注册码、导入项目_第5张图片

然后点击File-Project Structure


IntelliJ IDEA 注册码、导入项目_第6张图片

IntelliJ IDEA 注册码、导入项目_第7张图片

IntelliJ IDEA 注册码、导入项目_第8张图片

IntelliJ IDEA 注册码、导入项目_第9张图片

IntelliJ IDEA 注册码、导入项目_第10张图片

四. 运行bgcloud

  • 属性文件配置:

    • bgcloud.properties :使用测试环境
    • jdbc.properties :使用测试环境
    • project.properties :projectType=test
  • cmd打开到项目主目录:src-public\bgcloud\src\main\console,运行命令:

    npm install

    bower install

注意先后顺序:

运行的时候先运行gulp,完成后然后再运行tomcat

注意:

运行gulp出错 Error: EPERM: operation not permitted 这是 vsts更改了目录权限导致的问题,目录的只读数据去掉即可。

http://dist.springsource.com/release/TOOLS/gradle

你可能感兴趣的:(IntelliJ IDEA 注册码、导入项目)