Skip to content

Latest commit

 

History

History
45 lines (29 loc) · 975 Bytes

INSTALL-from-source.md

File metadata and controls

45 lines (29 loc) · 975 Bytes

Nanodash Installation from Sources

You can also install Nanodash from the source code, you need to have maven installed to build the application.

First clone the repository:

git clone https://github.com/knowledgepixels/nanodash.git
cd nanodash

Run for development

Build and run Nanodash on http://localhost:37373

mvn clean tomcat7:run

Build the jar

Build the .jar using maven at the root of the repository:

mvn clean install tomcat7:exec-war-only

It will generate a .jar and a .war file in the target folder

Rename the jar:

cp target/nanodash-*.jar target/nanodash.jar

Start Nanodash:

java -jar target/nanodash.jar -httpPort 37373 -resetExtract

Problems?

If you run into problems, open an issue or contact Tobias Kuhn.