Added Readme file
diff --git a/.gitignore b/.gitignore
index efbfd8a..97daef9 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,10 +1,24 @@
-# /
-/kalamar.secret
-/start-test
-/todo.org
-/fixtures.txt
-/sandbox
-/node_modules
-/public
-/.sass-cache
-/dev/css
\ No newline at end of file
+kalamar.secret
+start-test
+todo.org
+fixtures.txt
+sandbox
+Sandbox
+node_modules
+public
+.sass-cache
+dev/css
+log
+blib
+script*
+MYMETA*
+Makefile
+pm_to_blib
+*.tar.gz
+*~
+*.sqlite
+*.log
+*.db
+*.old
+.*
+!.gitignore
diff --git a/Changes b/Changes
index 63bc5af..d89f27e 100755
--- a/Changes
+++ b/Changes
@@ -1,5 +1,6 @@
-0.15 2015-05-07
+0.15 2015-05-21
- Cleanup for GitHub release
+ - First realease on GitHub.
0.14 2015-04-15
- Redesign of JS and Sass assets
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..ff683c9
--- /dev/null
+++ b/README.md
@@ -0,0 +1,105 @@
+![Kalamar](https://raw.githubusercontent.com/KorAP/Kalamar/master/dev/demo/img/kalamar.png)
+
+Kalamar is a [Mojolicious](http://mojolicio.us/)-based user interface
+frontend for the [KorAP Corpus Analysis Platform](http://korap.ids-mannheim.de/).
+
+![Kalamar Screenshots](https://raw.githubusercontent.com/KorAP/Kalamar/master/dev/demo/img/screenshots.png)
+
+**! This software is in its early stages and not stable yet! Use it on your own risk!**
+
+## INSTALLATION
+
+### Setup
+
+To fetch the latest version of Kalamar ...
+
+```
+$ git clone https://github.com/KorAP/Kalamar
+$ cd Krill
+```
+
+### Generate Static Asset Files
+
+To generate the static asset files (scripts, styles, images ...),
+you need NodeJS > 0.8. This will probably need administration
+rights.
+
+```
+$ npm install
+$ grunt
+```
+
+### Start Server
+
+Kalamar uses the [Mojolicious](http://mojolicio.us/) framework,
+that expects a Perl version of at least 5.10.1.
+The recommended environment is based on [Perlbrew](http://perlbrew.pl/)
+with [App::cpanminus](http://search.cpan.org/~miyagawa/App-cpanminus/).
+
+Some perl modules are not on CPAN yet, so you need to install them from GitHub.
+The easiest way to do this is using
+[App::cpanminus](http://search.cpan.org/~miyagawa/App-cpanminus/).
+This will probably need administration rights.
+
+```
+$ cpanm git://github.com/Akron/Mojolicious-Plugin-Search.git
+$ cpanm --force git://github.com/Akron/Mojolicious-Plugin-Localize.git
+```
+
+Then install the dependencies as always and run the test suite.
+There is no need to install Kalamar on your system.
+
+```
+$ perl Makefile.PL
+$ make test
+```
+
+Kalamar can be deployed like all
+[Mojolicious apps](http://mojolicio.us/perldoc/Mojolicious/Guides/Cookbook#DEPLOYMENT).
+The easiest way is to start the built-in server:
+
+```
+$ perl script/kalamar daemon
+```
+
+Kalamar will then be available at *localhost:3000* in your browser.
+
+
+## COPYRIGHT AND LICENSE
+
+### Bundled Software
+
+[ALERTIFY.js](https://fabien-d.github.io/alertify.js/)
+is released under the terms of the MIT License.
+[Almond](https://github.com/jrburke/almond)
+is released under the terms of the BSD License.
+[dagre](https://highlightjs.org/)
+is released under the terms of the MIT License.
+[Highlight.js](https://highlightjs.org/)
+is released under the terms of the BSD License.
+[Jasmine](https://jasmine.github.io/)
+is released under the terms of the MIT License.
+[RequireJS](http://requirejs.org/)
+is released under the terms of the BSD License.
+[Font Awesome](http://fontawesome.io)
+by Dave Gandy
+is released under the terms of the
+[SIL OFL 1.1](http://scripts.sil.org/OFL).
+
+
+### Original Software
+
+Copyright (C) 2015, [IDS Mannheim](http://www.ids-mannheim.de/)
+Author: [Nils Diewald](http://nils-diewald.de/)
+
+Kalamar is developed as part of the [KorAP](http://korap.ids-mannheim.de/)
+Corpus Analysis Platform at the
+[Institute for the German Language (IDS)](http://ids-mannheim.de/),
+member of the
+[Leibniz-Gemeinschaft](http://www.leibniz-gemeinschaft.de/en/about-us/leibniz-competition/projekte-2011/2011-funding-line-2/)
+and supported by the [KobRA](http://www.kobra.tu-dortmund.de) project,
+funded by the
+[Federal Ministry of Education and Research (BMBF)](http://www.bmbf.de/en/).
+
+Kalamar is free software published under the
+[BSD-2 License](https://raw.githubusercontent.com/KorAP/Kalamar/master/LICENSE).