The Setup of Development Environment
Prerequisites
Steps
- Fork Orienteer on github
- Clone your fork of Orienteer to your computer
cd .. git clone <your fork URL for Orienteer> cd Orienteer mvn clean install
- Modify orienteer.properties file if needed(see configuration section above).
- Go to some specific module you are working on. For example
cd orienteer-core
orcd orienteer-web
- Run jetty server
mvn jetty:run
(ormvn clean jetty:run
if you changed something in the code) - To access the application, in your browser, go to http://localhost:8080.