diff --git a/README.md b/README.md
index d6d63e6add5e162dad365ed5cf30ba762b66b328..0e1831feda20e2492b7014bc6c7e43f388e883f9 100644
--- a/README.md
+++ b/README.md
@@ -1,47 +1,51 @@
-# ARSnova 2
+# ARSnova
 
-This project really brings you *two* different versions of ARSnova: `arsnova-js` (ARSnova 2) and `arsnova-legacy-js` (ARSnova 1).
+ARSnova is a modern approach to Audience Response Systems (ARS). It is released under the GPLv3 license, and is offered as a Software as a Service free of charge. Head over to [arsnova.thm.de](https://arsnova.thm.de/) to see it in action.
 
-The first one is currently under heavy development and is not ready for production use. The second one is the tried-and-true ARSnova for your mobile device. However, `arsnova-legacy-js` will not receive any major updates and is nearing its end of life. It will be superseded by `arsnova-js`.
+![ARSnova](src/site/resources/showcase.png)
+
+ARSnova consists of two projects: the mobile client and the server. This repository contains the server code. You will find the client at thm-projects/arsnova-st2-js. However, you do not need to download both respositories in order to get started.
 
 ## Getting started
 
-Both versions of ARSnova will be deployed alongside each other, so you get to choose which one you would like to use. By default, `arsnova-legacy-js` is served via `index.html` and optionally via `developer.html`. If you want to get your hands dirty, you should open `dojo-index.html` and try out the redesigned ARSnova 2. It will work on any major browser instead of being for Webkit browsers only.
+This is the main repository. Almost all dependencies (including the mobile client) are managed for you by Maven.  The mobile client is served via `index.html`, and optionally via `developer.html`. 
 
-## Deployment
+## Configuration
 
 You will need to do some configuration work upfront.
 
- * Add a new directory "arsnova" in /etc and create a copy of arsnova.properties.example named arsnova.properties in this directory.
+ * Add a new directory "arsnova" in `/etc`, and create a copy of arsnova.properties.example named arsnova.properties in this directory.
  * Change settings to match your environment
 
-## Server configuration
+### Server
+
+In order to build up a full featured server installation containing ARSnova and CouchDB you have to install at least the following services:
 
-In order to build up a full featured server installation containing ARSnova2 and CouchDB you have to install at least the following services:
  * Apache Tomcat 7.0.29 (or newer)
- * Apache Webserver 2.2 or newer with buildin mod_proxy, mod_proxy_ajp and mod_proxy_http
+ * Apache Webserver 2.2 or newer with builtin modules `mod_proxy`, `mod_proxy_ajp` and `mod_proxy_http`
  * Apache CouchDB
  
-Make sure all services are installed. Next step is to configure the Apache Webserver. Find the configuration file or create a new one for use with a virtal host. This depends on your needs. At least you should have a configuration containing these settings:
+Make sure all services are installed. Next step is to configure the Apache Webserver. Find the configuration file or create a new one for use with a virtual host. This depends on your needs. At least you should have a configuration containing these settings:
+
+	<Location />
+		ProxyPass ajp://127.0.0.1:8009/
+		ProxyPassReverse ajp://127.0.0.1:8009/
+	</Location>
+
+All requests will be sent to your Apache Tomcat servlet container, using AJP running on port 8009.
+
+To enable the required Apache Webserver modules simply type:
 
-<Location /couchdb/>
- ProxyPass http://127.0.0.1:5984/
- ProxyPassReverse http://127.0.0.1:5984/
-</Location> 
-<Location />
- ProxyPass ajp://127.0.0.1:8009/
- ProxyPassReverse ajp://127.0.0.1:8009/
-</Location>
+	# a2enmod proxy
+	# a2enmod proxy_ajp
+	# a2enmod proxy_http
 
-This will redirect all requests for "/couchdb/..." to your Apache CouchDB server, running on port 5984.
-All other requests will be send to your Apache Tomcat servelt container, using AJP running on port 8009.
+The configuration is ready for development usage. Finally, you should (re)start all services. ARSnova is now listening on HTTP port 80.
 
-To enable the needed Apache Webserver simply type:
+### Database
 
-# a2enmod proxy
-# a2enmod proxy_ajp
-# a2enmod proxy_http
+We provide a script that will set up all database essentials. This "Setup Tool" is located at <https://scm.thm.de/arsnova/setuptool>. Make sure you have configured your database credentials inside the ARSnova configuration file: you will need to have the entries `couchdb.username` and `couchdb.password`.
 
-The configuration is ready for development usage. 
+## Credits
 
-Finally you should (re)start all services. ARSnova2 is now listening on HTTP port 80.
\ No newline at end of file
+ARSnova is powered by Technische Hochschule Mittelhessen - University of Applied Sciences.
\ No newline at end of file
diff --git a/src/site/resources/showcase.png b/src/site/resources/showcase.png
new file mode 100644
index 0000000000000000000000000000000000000000..6832c11cb0666acf7b262769adf8ca51ea428ffe
Binary files /dev/null and b/src/site/resources/showcase.png differ