in java/java-hello-world/src/main/java/cloudcode/helloworld/HelloWorldApplication.java [17:23]
public static void main(final String[] args) throws Exception {
String port = System.getenv("PORT");
if (port == null) {
logger.warn("$PORT environment variable not set");
}
SpringApplication.run(HelloWorldApplication.class, args);
}