Skip to content

configuring application

MarkoV edited this page Feb 14, 2017 · 2 revisions

Basic Configuration

In case are using development environment from provided VM you should be able to access the project from the native operating system browser without any further configuration:

When accessing the application through "localhost" rather than remote IP "192.168.56.100" the configuration in ins_common/src/main/java/org/scg/common/Properties.java
needs to be changed accordingly by uncommenting / commenting out following lines:

// Use this when using VBOX
private static String HOST_IP = "192.168.56.100";
// Use this when working on localhost
//private static String HOST_IP = "localhost";

Development environment uses following ports:

  1. 8088 - web interface
  2. 3333 - web sockets service
  3. 8090 - internal web sockets messaging
  4. 8080 - API / virtual endpoint

Clone this wiki locally