A tool that helps you to write your Software Guidebook (SGB) using wiki syntax, PlantUML, etc. and TiddlyWiki (TW) as GUI. An example of how to use this tool is here.
It is a document describes the software architecture and high-level design of a system. In addition to that, the document contains maps, sight and itineraries, history and culture and practical information about the software; it describes what the code does not. And it is an alive and evolve document.
-
Create a Python virtual environment.
-
Activate the virtual environment
-
Install Python requirements by calling:
$ pip install -r requirements.txt
-
Install Timini to be able to save the TiddlyWiki file from your web-browser.
Steps (1) and (2) are not mandatory but recomended, using virtual environments avoid mixing required packages of this application with your Python environment.
Activate the virtual environment. For example using conda:
$ conda activate sgb
Open TiddlyWiki HTML page in your web browse.
Start your daily work by opening TiddlyWiki HTML page in your web browse. After that synchronize TiddlyWiki with your tiddlers in the DB by executing:
$ git pull
$ python sgb-cli.py load_tiddlers
The sadac-cli command loads tiddlers from DB and add to TiddlyWiki file. Once this is done you have to reload the TiddlyWiki page in your web browser..
Once you whant to want to store the tiddlers in the DB, for doing that you have to execute:
$ python sgb-cli.py save_tiddlers
$ git push
In case that there is a conflict in git, you should load the tiddlers to the TiddlyWiki HTML file after solving it.