2017 © Pedro Peláez
 

library simple-wiki

Simple database-less wiki

image

mlo/simple-wiki

Simple database-less wiki

  • Friday, May 1, 2015
  • by mloberg
  • Repository
  • 5 Watchers
  • 6 Stars
  • 37 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 2 Forks
  • 1 Open issues
  • 3 Versions
  • 3 % Grown

The README.md

Simple Wiki

Simple Wiki is a database-less wiki. It renders pages from Markdown and allows you to add and edit pages from the web application., (*1)

Installing

If you have Composer installed you can use the create-project command to install Simple Wiki., (*2)

composer create-project mlo/simple-wiki path/to/project

Configuring

Simple Wiki allows you to edit your pages through the web application if an user is logged in. Users are defined in index.php., (*3)

$app['users'] = array(
    'username' => 'bcrypted password',
);

To generate a bcrypted password run php index.php genpass [password]., (*4)

Pages

Pages are stored in app/content, but can be changed using the contentDir setting. These pages are Markdown files with support for YAML Front Matter., (*5)

---
title: Page Title
---
Page content

Hacking

Simple Wiki is built using Silex and Twig and can be modified to fit your needs., (*6)

If you add something cool, create a pull request for it., (*7)

The Versions