mirror of
https://github.com/til-schneider/slim-wiki.git
synced 2025-08-01 22:30:15 +02:00
Added a special readme to include into the release zip
This commit is contained in:
31
README-for-release-zip.md
Normal file
31
README-for-release-zip.md
Normal 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!
|
@@ -79,8 +79,11 @@ module.exports = function (grunt) {
|
|||||||
{
|
{
|
||||||
expand: true,
|
expand: true,
|
||||||
cwd: projectDir,
|
cwd: projectDir,
|
||||||
src: [ 'LICENSE', 'README.md' ],
|
src: [ 'LICENSE', 'README-for-release-zip.md' ],
|
||||||
dest: 'slim-wiki/'
|
dest: 'slim-wiki/',
|
||||||
|
rename: function(dest, path, rule) {
|
||||||
|
return dest + path.replace('-for-release-zip', '');
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
expand: true,
|
expand: true,
|
||||||
|
Reference in New Issue
Block a user