blob: 2eff491853ea9e16ea731d1982ab665ecaab86b3 [file] [log] [blame]
package de.akquinet.devops;
public class ManualUITestLaunch {
public static void main(String[] args) {
int httpPort = 8080, httpsPort = 8443, shutdownPort = 8081;
String gitblitPropertiesPath = "test-ui-gitblit.properties", usersPropertiesPath = "test-ui-users.conf";
GitblitRunnable gitblitRunnable = new GitblitRunnable(httpPort,
httpsPort, shutdownPort, gitblitPropertiesPath,
usersPropertiesPath);
Thread serverThread = new Thread(gitblitRunnable);
serverThread.start();
}
}