+ README.markdown
authorAlexandre Bertails <bertails@w3.org>
Mon, 03 Oct 2011 12:56:21 -0400
changeset 41 7d4fdaad3a2a
parent 31 400f0281cf7c
child 42 de67196c30ad
+ README.markdown
README.markdown
README.txt
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/README.markdown	Mon Oct 03 12:56:21 2011 -0400
@@ -0,0 +1,58 @@
+The ReadWriteWeb app
+--------------------
+
+It depends on:
+
+* Java 6
+* that's all :-)
+
+It comes with
+
+* sbt project
+* generic sbt launcher
+* jar packager (assembly)
+* eclipse plugin for sbt
+* Web framework (Unfiltered)
+* embedded Web server (Jetty)
+* tests for web api (specs)
+* logger (slf4j)
+* the Jena/ARQ libraries
+
+How to start geeking
+--------------------
+
+BE PATIENT: the first time, some operations take some time because it downloads
+            all the dependencies...
+
+* to launch sbt
+
+$ ./sbt
+
+* to auto-compile the source
+
+> ~ compile
+
+* to launch tests under sbt (will cache all the dependencies the first time, can take a while)
+
+> test
+
+* to run the Web App
+
+> run
+
+or
+
+> run 8080
+
+* to generate the eclipse configuration
+
+> eclipse same-targets
+
+* to package the application as a stand-alone jar (creates target/read-write-web.jar)
+
+> assembly
+
+Using the stand-alone jar
+-------------------------
+
+java -jar target/read-write-web.jar 8080 ~/WWW/2011/09 /2011/09
--- a/README.txt	Tue Aug 30 16:08:50 2011 -0400
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,56 +0,0 @@
-The ReadWriteWeb app
---------------------
-
-It depends on:
-* Java 6
-* that's all :-)
-
-It comes with
-* sbt project
-* generic sbt launcher
-* jar packager (assembly)
-* eclipse plugin for sbt
-* Web framework (Unfiltered)
-* embedded Web server (Jetty)
-* tests for web api (specs)
-* logger (slf4j)
-* the Jena/ARQ libraries
-
-How to start geeking
---------------------
-
-BE PATIENT: the first time, some operations take some time because it downloads
-            all the dependencies...
-
-* to launch sbt
-
-$ ./sbt
-
-* to auto-compile the source
-
-> ~ compile
-
-* to launch tests under sbt (will cache all the dependencies the first time, can take a while)
-
-> test
-
-* to run the Web App
-
-> run
-
-or
-
-> run 8080
-
-* to generate the eclipse configuration
-
-> eclipse same-targets
-
-* to package the application as a stand-alone jar (creates target/read-write-web.jar)
-
-> assembly
-
-Using the stand-alone jar
--------------------------
-
-java -jar target/read-write-web.jar 8080 ~/WWW/2011/09 /2011/09