django-mindwiki
, or just 'MindWiki', is a Django App intended to be a Personal Wiki and Second Brain. Some inspiration
has been taken from https://fortelabs.co/blog/basboverview/
-
Add "mindwiki" to your INSTALLED_APPS setting like this:
INSTALLED_APPS = [ ..., 'mindwiki', ]
-
Include the
mindwiki
URLconf in your project urls.py like this:from django.urls import include, path urlpatterns = [ path('mindwiki/', include('mindwiki.urls')), ]
-
Run
python manage.py migrate
to create the mindwiki models. -
Start the development server and visit http://127.0.0.1:8000/admin/ to create and edit wiki items (you'll need the Admin app enabled).
-
Visit http://127.0.0.1:8000/mindwiki/ to view the MindWiki.