Update instructions to use docker-compose only

This commit is contained in:
Nanne Baars
2018-07-17 20:17:35 +02:00
parent 63a50df7a1
commit 1252e3dc21
36 changed files with 99 additions and 90 deletions

View File

@ -24,17 +24,22 @@
*/
package org.owasp.webgoat;
import lombok.extern.slf4j.Slf4j;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
/**
* Main entry point, this project is here to get all the lesson jars included to the final jar file
*
* @author nbaars
* @date 2/21/17
*/
@SpringBootApplication
@Slf4j
public class StartWebGoat {
public static void main(String[] args) {
log.info("Starting WebGoat with args: {}", args);
SpringApplication.run(WebGoat.class, args);
}
}