aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <code@mail.matthias.benkard.de>2009-04-11 19:11:56 +0200
committerMatthias Andreas Benkard <code@mail.matthias.benkard.de>2009-04-11 19:11:56 +0200
commit9b6a5ed3cf64a1ff2072d596ee0dd2af9b2c641d (patch)
tree305993d2e257d84b489ef844add538fbb43cfed3
parent4a4244326b22da8b2ee773d8d01602e14dffc97c (diff)
Replace the INSTALL file with README.markdown.
-rw-r--r--INSTALL44
-rw-r--r--README.markdown32
2 files changed, 32 insertions, 44 deletions
diff --git a/INSTALL b/INSTALL
deleted file mode 100644
index 566f5f6..0000000
--- a/INSTALL
+++ /dev/null
@@ -1,44 +0,0 @@
-#author Christoph Senjak and Matthias Benkard
-#date 2009-02-18 - <lisp>(format-time-string "%Y-%m-%d")</lisp>
-#title CljSSSS^g Quick Start Guide
-#desc The CljSSSS^g installation guide
-
-; Time-stamp: <2009-02-19 17:35:37 mulk>
-;
-; C-c i t insert-time-stamp
-; C-c C-t muse-project-publish-this-file
-; C-c C-e muse-edit-link-at-point
-; C-c C-i muse-insert-thing
-
-; CljSSSS<literal><sup>g</sup></literal>
-
-
-* Dependencies
-
-The following dependencies need to be on your class path:
-
- - Clojure
-
- - Clojure Contrib
-
- - Compojure along with all of its dependencies, including:
- - Fact
- - Jetty
- - Rend
- - The Apache Commons Logging API
- - The Java Servlet API
-
- - <verbatim>StringTemplate</verbatim> along with ANTLR
-
- - ROME along with JDOM
-
- - SQLiteJDBC
-
-
-----
-
-*<lisp>(format-time-string "%Y-%m-%d, %k:%M %Z")</lisp>*
-
-; Local Variables:
-; mode: muse
-; End:
diff --git a/README.markdown b/README.markdown
new file mode 100644
index 0000000..cd50ecd
--- /dev/null
+++ b/README.markdown
@@ -0,0 +1,32 @@
+# The Gödel-Gentzen Clojure Syndication Services Super System
+
+CljSSSS<sup>g</sup> is a web-based feed reader written in Clojure.
+
+## Dependencies
+
+CljSSSS<sup>g</sup> requires the following items to be on the class path:
+
+ - [Clojure](http://clojure.org/)
+ - [Clojure Contrib](http://code.google.com/p/clojure-contrib/)
+ - [Compojure](http://groups.google.com/group/compojure) along with all of its dependencies, including:
+ * [Fact](http://github.com/weavejester/fact)
+ * [Jetty](http://www.mortbay.org/)
+ * [Rend](http://github.com/weavejester/rend)
+ * The [Apache Commons Logging API](http://commons.apache.org/logging/)
+ * The [Java Servlet API](http://java.sun.com/products/servlet/)
+ - [StringTemplate](http://www.stringtemplate.org/) along with [ANTLR](http://www.antlr.org/)
+ - [ROME](https://rome.dev.java.net/) along with [JDOM](http://www.jdom.org/)
+ - [SQLiteJDBC](http://zentus.com/sqlitejdbc/) (if you want to deploy using SQLite)
+
+## Deployment
+
+In order to run CljSSSS<sup>g</sup>, load the main file, `cljssss-g.clj`.
+
+You will probably want to populate your database with a couple of user records before trying to log in. See the bottom of the `cljssss-g.clj` file for the database schema and examples.
+
+<!--
+Local Variables:
+ mode: markdown
+ coding: utf-8
+End:
+-->