diff --git a/README-for-release-zip.md b/README-for-release-zip.md new file mode 100644 index 0000000..081080d --- /dev/null +++ b/README-for-release-zip.md @@ -0,0 +1,31 @@ +slim-wiki +========= + +slim wiki is a fast and slim wiki based on PHP and markdown. + + + +Installation +------------ + +Requirements: + +- PHP 5.3+ +- Apache Webserver with `mod_rewrite` enabled. + +Installation: + +1. [Download](https://github.com/til-schneider/slim-wiki/releases/latest) the latest `slim-wiki.zip`. +2. Extract the zip and put the contents on your webspace. +3. Create a `config.xml` (copy and adjust the example). +4. Give write permissions to the server for the directory `data` (including subdirectories and files). + + + +Changelog +--------- + + +### Version 1 on 2015-02-03 ### + +The first slim wiki release! diff --git a/src/Gruntfile.js b/src/Gruntfile.js index 1126077..3876336 100644 --- a/src/Gruntfile.js +++ b/src/Gruntfile.js @@ -79,8 +79,11 @@ module.exports = function (grunt) { { expand: true, cwd: projectDir, - src: [ 'LICENSE', 'README.md' ], - dest: 'slim-wiki/' + src: [ 'LICENSE', 'README-for-release-zip.md' ], + dest: 'slim-wiki/', + rename: function(dest, path, rule) { + return dest + path.replace('-for-release-zip', ''); + } }, { expand: true,