Skip to content

ravenoak/django-mindwiki

Repository files navigation

django-mindwiki

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/

Quick start

  1. Add "mindwiki" to your INSTALLED_APPS setting like this:

    INSTALLED_APPS = [
         ...,
         'mindwiki',
       ]
  2. Include the mindwiki URLconf in your project urls.py like this:

    from django.urls import include, path
    
    urlpatterns = [
         path('mindwiki/', include('mindwiki.urls')),
    ]
  3. Run python manage.py migrate to create the mindwiki models.

  4. 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).

  5. Visit http://127.0.0.1:8000/mindwiki/ to view the MindWiki.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published