Skip to content

Latest commit

 

History

History
23 lines (19 loc) · 982 Bytes

the_setup_of_development_environment.md

File metadata and controls

23 lines (19 loc) · 982 Bytes

The Setup of Development Environment

##Prerequisites

##Steps

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