From f01745b8b8dd46bb8b87418ae5e3c0f2efabd6c4 Mon Sep 17 00:00:00 2001 From: shautvast Date: Mon, 8 Dec 2014 22:09:52 +0100 Subject: [PATCH 1/2] Initial commit --- README.md | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..634e9dc --- /dev/null +++ b/README.md @@ -0,0 +1,4 @@ +codewatch +========= + +Small experimental webapp, using java7, javascript and websockets. It listens on changes in the local filesystem (it's meant to run locally), does findbugs analysis and shows the code annotated with the results in the browser automatically. From db29cf94882a53ede4b9d60219d7e452b934e1db Mon Sep 17 00:00:00 2001 From: shautvast Date: Mon, 8 Dec 2014 22:15:25 +0100 Subject: [PATCH 2/2] Update README.md --- README.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 634e9dc..7efc534 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,14 @@ codewatch ========= -Small experimental webapp, using java7, javascript and websockets. It listens on changes in the local filesystem (it's meant to run locally), does findbugs analysis and shows the code annotated with the results in the browser automatically. +Small experimental webapp, using java7, javascript and websockets. +It listens on changes in the local filesystem (it's meant to run locally), does findbugs analysis and shows the code annotated with the results in the browser automatically. + +* Go to the code in nl.jssl.codewatch.Main.java +* In this version the source and binaries locations are still hardcoded, so you'll have to update that. +* Starting the main, will startup a webserver. +* Browse to http://localhost:8080 +* your browser will respond with "Waiting for code changes". +* Change something in some source code that is in the path you specified in Main. +* go back to your browser, and it will show the code you touched. +