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
- Host: GitHub
- URL: https://github.com/dcai/ptext
- Owner: dcai
- Created: 2011-07-05T07:14:08.000Z (almost 15 years ago)
- Default Branch: master
- Last Pushed: 2012-02-18T20:09:24.000Z (over 14 years ago)
- Last Synced: 2024-04-15T01:57:35.352Z (about 2 years ago)
- Language: JavaScript
- Homepage: http://dongsheng.github.com/ptext
- Size: 305 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
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
```