// Start webserver
final ApplicationLoader applicationLoader = new ApplicationLoader();
final HttpServlet httpServlet = new HttpServlet();
httpServlet.setEntryPointClassName("com.ponysdk.sample.trading.client.TradingSampleEntryPoint");
final BootstrapServlet bootstrapServlet = new BootstrapServlet();
bootstrapServlet.addStylesheet("css/sample.less");
bootstrapServlet.addStylesheet("css/ponysdk.less");
bootstrapServlet.addJavascript("script/less.js");
final Main main = new Main();
main.setApplicationContextName("trading");
main.setPort(8081);
main.setHttpServlet(httpServlet);