Go to file
Paulo Gustavo Veiga f3afdc04cd Merge branch 'develop' 2022-03-27 15:02:24 -03:00
config/database Update admin password for testing purposes. 2020-11-22 14:41:33 -08:00
distribution Clean up JAVA_OPTS variable 2022-02-28 21:17:21 -08:00
wise-ui Prepare for release 5.0.10 2022-03-27 15:01:50 -03:00
wise-webapp Prepare for release 5.0.10 2022-03-27 15:01:50 -03:00
.gitignore Fix major update integrating with external wisemapping frond end 2021-12-24 18:03:23 -08:00
README.md Improve documentation 2022-03-27 00:24:56 +00:00
bitbucket-pipelines.yml bitbucket-pipelines.yml edited online with Bitbucket 2022-01-25 16:59:08 +00:00
license.txt Remove unsed files. 2014-01-25 15:47:44 -03:00
pom.xml Prepare for release 5.0.10 2022-03-27 15:01:50 -03:00

README.md

Overview

Wise Mapping is the web mind mapping open source tool that leverages the power of Mind Maps mixing open standards technologies such as SVG and React. WiseMapping is based on the same code product supporting [http://www.wisemapping.com].

Compiling and Running

Prerequisites

The following products must be installed:

* OpenJDK 11 or higher
* Maven 3.x or higher ([http://maven.apache.org/])
* npm 6 or higher ([https://www.npmjs.com/package/npm?activeTab=versions])

Compiling

WiseMapping uses Maven as packaging and project management. It's composed of 5 maven sub-modules:

* wise-ui:  React font-end fetcher
* wise-webapp: J2EE web application 

The full compilation of the project can be performed executing within :

mvn clean install

Once this command is executed, the file /wise-webapp/target/wisemapping*.war will be generated.

Local Development

The previously generated war can be deployed locally executing within the directory /wise-webapp the following command:

cd wise-webapp;mvn jetty:run-war

This will start the application on the URL: [http://localhost:8080/] using file based database.

User: test@wisemapping.org Password: test

Local Development + UI Integration

In order to reduce the life-cycle to develop UI backend testing, you can do the following hack:

  • Clone wisemapping-open-source and wisemapping-frontend at the same top level directory
  • Compile wisemapping-frontend. Details for compilation can be found in the wisemapping-frontend readme.
  • Compile wisemapping-open-source

A quick and dirty solution to share changes in the UI is to manually compile the dist. This will make the loader file available without the need to publish:

yarn --cwd wisemapping-frontend build;cp -r wisemapping-frontend/packages/mindplot/dist/* wisemapping-open-source/wise-ui/target/wisemapping-mindplot/package/dist;cp -r wisemapping-frontend/packages/mindplot/dist/* wisemapping-open-source/wise-ui/target/wisemapping-mindplot/package/dist

Compiling and running with docker-compose

Check out the [docker section](./docker/README.

Members

Founders

Individual Contributors

Past Individual Contributors

  • Ignacio Manzano

License

The source code is Licensed under the WiseMapping Open License, Version 1.0 (the “License”); You may obtain a copy of the License at: [https://wisemapping.atlassian.net/wiki/display/WS/License]