An open API service indexing awesome lists of open source software.

https://github.com/dcai/ptext

Simple wiki for personal knowledge management
https://github.com/dcai/ptext

Last synced: 6 days ago
JSON representation

Simple wiki for personal knowledge management

Awesome Lists containing this project

README

          

Introduction
------------
pText is a wiki app for personal knowledge management

Requirement
-----------
- easy_install web.py
- easy_install mysql-python/SQLite/Psycopg
- easy_install Markdown

Installation
------------

- Setup mod_wsgi
- Setup apache to handler WSGI Inteface

```

DocumentRoot "/www/plaintext"
ServerName wiki.local
LogLevel info
WSGIDaemonProcess wiki python-eggs=/tmp
WSGIProcessGroup wiki
WSGIScriptAlias / /www/plaintext/wsgi.py/
Alias /static /www/plaintext/static
AddType text/html .py
ErrorLog "/private/var/log/apache2/wiki-error_log"
CustomLog "/private/var/log/apache2/wiki-access_log" common

Order Allow,Deny
Allow from all
Options -Indexes


Options +Indexes

```

- Setup DB
- Good to go

Export DB
---------
Just database structure:
```
mysqldump wiki --no-data --skip-comments
```