Python Markdown Content Manager.
This is a desktop wiki tool to manage notes and files, inspired by TiddlyWiki classic.
The content is written in markdown.
Each page of markdown text is stored in separate files in the data/pages/
directory.
Non-markdown files can be "uploaded" and stored in the media/
directory structure.
Tested on Ubuntu 20.04.
git clone https://github.com/ahernp/pmcm.git
cd pmcm
python3 -m venv pmcm
Create Python 3 virtual environment.source pmcm/bin/activate
Activate Python virtual environment.pip install markdown
cp -r initial_content/data .
Create and populate data directories.cp -r initial_content/media .
Create and populate media directories.python3 server.py -p 8088
Start application/server.- Visit http://localhost:8088/ to use Wiki tool.
Read the Help page in wiki for instructions on how to use the tool.