public static void main()

in java/java-guestbook/frontend/src/main/java/cloudcode/guestbook/frontend/FrontendApplication.java [13:23]


    public static void main(final String[] args) {
        final String[] expectedVars = {"PORT", "GUESTBOOK_API_ADDR"};
        for (String v : expectedVars) {
            String value = System.getenv(v);
            if (value == null) {
                System.out.format("error: %s environment variable not set", v);
                System.exit(1);
            }
        }
        SpringApplication.run(FrontendApplication.class, args);
    }