博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Set up gradle HiveMind
阅读量:6087 次
发布时间:2019-06-20

本文共 3282 字,大约阅读时间需要 10 分钟。

HiveMind is a comprehensive ERP application for service organizations. It includes a project management application featuring project/task, request, and content (wiki) management. There is support for multiple vendors, multiple clients, flexible billing rates, time recording, expenses, invoicing (AR/AP), payments, and general ledger.

Running HiveMind

To run HiveMind you need Moqui Framework, HiveMind itself, and the components it depends on. Moqui supports a few methods for setup and deployment as described in the documentation here:

The easiest way to try HiveMind is with the binary distribution available on GitHub:

If you don't have gradle or ant installed you can use this command line to run Java directly:

$ java -Xmx512M -XX:MaxPermSize=128m -jar moqui-${version}.war

Note that with JDK 8 you don't need the -XX:MaxPermSize argument.

Build and Run Locally

To get and locally run the latest HiveMind you'll need JDK 7 or later (Oracle JDK 8 recommended), and either a git client or you can use the ZIP download link on GitHub.

Java can be downloaded here (make sure to use the Download button under the JDK column, NOT the under the JRE column):

The following instructions use the Gradle Wrapper to build. You can optionally download and install Gradle (from ) and use gradle instead of ./gradlew in the example commands.

To download Moqui/Mantle/HiveMind source and build/run locally use the following steps:

Step 1: Download Moqui Framework

Zip:

Git:

From either source you should put the contents in a moqui directory for the next steps. If you use the Zip download change the directory name from moqui-framework-master to moqui. If you clone the Git repository clone it into a moqui directory.

Step 2: Download HiveMind and Dependencies

This is easy with the dependency configuration per component, and the Gradle get component tasks. With Gradle Wrapper you don't need to install Gradle separately to do this. The HiveMind component is configured by default in the Moqui addons.xml file, so just run:

$ ./gradlew getComponent -Pcomponent=HiveMind

If you downloaded the zip archive for Moqui Framework this will download the zip archives for HiveMind and each component it depends on. If you cloned from the git repository this will clone all components from their repositories.

Step 3: Build and Load Data

From the moqui directory run:

$ ./gradlew load

This will build Moqui and load seed and demo data from all components into an embedded H2 database.

Step 4: Run Moqui

From the moqui directory run:

$ ./gradlew run

Step 5: Access the HiveMind applications

For the HiveMind Project Management application, in your browser go to:

Or for the admin application go to:

Use the button in the lower-left corner of the screen login as John Doe.

Setup Commands Quick Reference

Java 8 is recommended:

Here are command line steps for initial checkout, setup, and run:

$ git clone git@github.com:moqui/moqui-framework.git moqui$ cd moqui$ ./gradlew getComponent -Pcomponent=HiveMind$ ./gradlew load$ ./gradlew run

Here are steps for a basic update:

$ cd moqui$ ./gradlew cleanAll gitPullAll load$ ./gradlew run

To access the project management app go to something like in a web browser. To access the admin app go to .

转载于:https://www.cnblogs.com/dream-to-pku/p/5466406.html

你可能感兴趣的文章
php-fpm常用配置
查看>>
羊皮卷的故事
查看>>
基于jQuery select下拉框美化插件
查看>>
权限 Ralasafe 思考
查看>>
cpomoser 出现 killed 报错误问题
查看>>
正则表达式详细用法及讲解
查看>>
HIVEjdbc搭建
查看>>
DCon 2015 中国大数据技术嘉年华圆满结束
查看>>
CRC16 CRC-CCITT (0xFFFF) 升级版
查看>>
twemproxy源码解析---特性及启动流程
查看>>
facet_wrap(~rating)
查看>>
希望。
查看>>
一个App的界面设计流程是怎么产生的
查看>>
elasticsearch中遇到的一些问题以及解决方式
查看>>
axios 跨域 sessionid 每次访问不一致的问题
查看>>
PHP学习笔记3:数组
查看>>
网页上的各种宽高
查看>>
AndroidAsync
查看>>
const 和 #define区别
查看>>
可变对象与不可变对象
查看>>