Flask and MongoDB powered CMS
Quokka is a flexible content management platform powered by Python, Flask and MongoDB.
Quick start
You need a MongoDB instance running locally or remotely to connect.
Quokka runs on Python 2.7
- Get Quokka
$ git clone https://github.com/pythonhub/quokka
$ cd quokka
$ pip install -r requirements.txt
- Define your MongoDB settings
$ $EDITOR quokka/local_settings.py
===============quokka/quokka/local_settings.py===============
MONGODB_SETTINGS = {'DB': 'your_mongo_db'}
DEBUG = True
=============================================================
- Populate with sample data (optional)
$ python manage.py populate
- Create a superuser
$ python manage.py createsuperuser
you@email.com
P4$$W0Rd
- Run
$ python manage.py runserver
- Access on http://localhost:5000
- Admin on http://localhost:5000/admin
or by making your server reachable on other networks
- Access on http://0.0.0.0:8000
- Admin on http://0.0.0.0:8000/admin
from https://github.com/pythonhub/quokka