1
0
mirror of https://github.com/til-schneider/slim-wiki.git synced 2025-01-17 04:38:24 +01:00

Added a special readme to include into the release zip

This commit is contained in:
til-schneider 2016-02-03 19:55:44 +01:00
parent 408d9d0491
commit f2ec534e69
2 changed files with 36 additions and 2 deletions

31
README-for-release-zip.md Normal file
View File

@ -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!

View File

@ -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,