ilyas-shah / Django-wiki-app

A simple wikipedia app developed using Python Django web app framework

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Django wiki application

Prerequistes

  • Python version > 3.xx should be installed in your system
  • Install Django framework if not installed already.

    pip3 install Django

  • Install markdown2 fro markdown to html conversion.

    pip3 install markdown2

Run the application

  1. clone the repo.
  2. Install all the prequisites.
  3. Run the following command to start the development server

    python3 manage.py runserver

  4. Now, application should be running at 127.0.0.1:8000

App features

  1. List of all pages.
  2. Create a new page.
  3. Edit an existing page.
  4. Search list of pages.
  5. Get a random page.

upcoming features

  1. User authentication.
  2. Role based access.
  3. Database integration

About

A simple wikipedia app developed using Python Django web app framework

License:MIT License


Languages

Language:Python 73.8%Language:HTML 23.4%Language:CSS 2.8%