{
if(true == args[0].equalsIgnoreCase("server"))
{
int port = Integer.parseInt(args[1]);
String workingDir = args[2];
AutomarkWebApplication sparkServe = new AutomarkWebApplication(port, workingDir);
sparkServe.run();
}
else
{
Log.error("dont know option -->" + args[0]);
AutomarkCommandLineEntryPoint.printOptions();