All Projects → netvariant → workflow-designer

netvariant / workflow-designer

Licence: other
Standalone Moqui workflow builder application based on Vue.js

Programming Languages

Vue
7211 projects
CSS
56736 projects
javascript
184084 projects - #8 most used programming language
HTML
75241 projects

Projects that are alternatives of or similar to workflow-designer

mantle-udm
Mantle Universal Data Model
Stars: ✭ 38 (-70.31%)
Mutual labels:  moqui
moqui-runtime
The default runtime directory for Moqui Framework
Stars: ✭ 35 (-72.66%)
Mutual labels:  moqui
SimpleScreens
Simple Screens is a library of screens and screen components (forms, sections, transitions) to be included, extended, or generally reused in applications based on Moqui Framework and Mantle Business Artifacts.
Stars: ✭ 20 (-84.37%)
Mutual labels:  moqui
HiveMind
HiveMind is a project management and ERP application for services organizations. It features project/task management, request tracking, time tracking, expenses, invoices/payments, general ledger, and content management (wiki). HiveMind is based on Moqui Framework, Mantle Business Artifacts, and Simple Screens.
Stars: ✭ 40 (-68.75%)
Mutual labels:  moqui
moqui-hazelcast
Moqui Framework tool component for Hazelcast, used for distributed async services, entity distributed cache invalidation, web session replication, and distributed cache (javax.cache)
Stars: ✭ 12 (-90.62%)
Mutual labels:  moqui
DWKit
DWKit is a Business Process Management System based on .NET Core and React
Stars: ✭ 121 (-5.47%)
Mutual labels:  workflow-designer

Workflow Designer

Standalone Moqui workflow designer application based on Vue.js.

Table of Contents

Installation

You will be carrying out these steps to install the workflow designer.

  • Download the workflow designer
  • Install dependencies & run workflow designer

Download the workflow designer

Clone the workflow designer repository using this command:

$ git clone https://github.com/Netvariant/workflow-designer.git

Install dependencies & run workflow designer

The workflow designer uses NPM for dependency management. Install dependencies and run the workflow designer using these commands:

$ npm install
$ npm run serve

You can also build the project for production use using this command:

$ npm run build

Remember, the user account you use to login must be a member of a group that has access to the Moqui Workflow REST API artifact group.

Configuration

The workflow designer communicates with your Moqui instance using REST APIs. The base API URL path is configured in the .env file. All API requests are pass though a proxy to reach the Moqui instance, this is configured in the vue.config.js file.

module.exports = {
    // ...
    proxy: {
        // proxy all requests starting with /rest/s1 to localhost:8080
        '/rest/s1': {
            target: 'http://localhost:8080',
            ws: true,
            changeOrigin: true
        }
    }
    // ...
}

See the Configuration Reference for a detailed description of all available configuration options.

Authors

This project was build with ❤️ by the good fellas at Netvariant.

License

license

This project is licensed under the CC0 License, see the LICENSE.md file for details.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].