Initial Drop of Opensync Gateway for Cloud. Still non-functional in several areas

This commit is contained in:
Mike Hansen
2020-05-05 17:28:48 -04:00
parent 276083d259
commit 58242e9e40
32 changed files with 2681 additions and 3 deletions

View File

@@ -0,0 +1,22 @@
package com.telecominfraproject.wlan.opensync.integration;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.context.ConfigurableApplicationContext;
import org.springframework.context.annotation.ComponentScan;
@ComponentScan(basePackages = { "com.telecominfraproject.wlan" })
@EnableAutoConfiguration
public class OpenSyncGatewayCloudProcess {
/**
* <br>{@code java -Dssl.props=file:./ssl.properties -Dlogback.configurationFile=file:./logback.xml -jar ./opensync-experiment-0.0.1-SNAPSHOT.jar}
*
* @param args
*/
public static void main(String[] args) {
ConfigurableApplicationContext applicationContext = SpringApplication.run(OpenSyncGatewayCloudProcess.class, args);
// signal start of the application context
applicationContext.start();
}
}