Skip to content

wigginslab/quokka

 
 

Repository files navigation

Flask Registered Travis CI Coverage Status Code Health Requirements Status

Stories in Ready Join Slack Chat Slack

Twitter Small Acts Manifesto Donate with Paypal

wercker status Launch on OpenShift

Quokka project

Flask and MongoDB powered CMS

quokka cms

Quokka is a flexible content management platform powered by Python, Flask and MongoDB.

You can use Quokka CMS to publish a blog, a web portal, intranet, document management system and you can install existing quokka-modules such as quokka-cart to create an e-commerce app or you can easily create a new quokka-module to fit your needs.

Quokka Dashboard (based in Flask-Admin)

quokka cms admin content dashboard

Quokka runs on Python 2.7 (Python 3 support is being developed)

See yourself

User 'admin@example.com' and passwd 'admin' to login in to /admin

Get Quokka

Using Docker

The easiest way to run Quokka for development or production is using quokkaCMS + Gunicorn + Supervisor under a Docker Container. You can see the instructions in the following repository: https://github.com/quokkaproject/docker-gunicorn-supervisor

Get Quokka to run locally for development or deployment

git clone https://github.com/quokkaproject/quokka --branch master --single-branch
cd quokka

if you are cloning to contribute to the project just clone it without the "--branch=master --single-branch" part

Run Quokka

Install needed packages in your local computer

You can install everything you need in your local computer or if preferred use a virtualenv for Python

Mongo

  • Quokka requires a MongoDB instance running to connect.

    1. If you don't have a MongoDB instance running, you can quickly configure it:

      • Download from here
      • Unzip the file
      • Open a separate console
      • Run it inside the MongoDB directory:
      ./bin/mongod --dbpath /tmp/

      WARNING: If you want to persist the data, give another path in place of --dbpath /tmp

    2. If you already have, just define your MongoDB settings:

      $ $EDITOR quokka/local_settings.py
      ===============quokka/quokka/local_settings.py===============
      MONGODB_DB = "yourdbname"
      MONGODB_HOST = 'your_host'
      MONGODB_PORT = 27017
      MONGODB_USERNAME = None
      MONGODB_PASSWORD = None
      =============================================================
      
      # You can also use envvars `export QUOKKA_MONGO_DB="yourdbname"` 
    3. If you have Docker installed you can simply run the official Mongo image

      cd quokka
      docker run -d -v $PWD/etc/mongodata:/data/db -p 27017:27017 mongo

O.S Requirements (optional)

  • O.S Requirements (for media conversions) you may need the following requirements on your operating system

    1. Ubuntu/Debian
      sudo apt-get install libtiff5-dev libjpeg8-dev zlib1g-dev libfreetype6-dev
    2. Alpine Linux
      apk add gcc python py-pip libjpeg zlib zlib-dev tiff freetype git py-pillow python-dev musl-dev

Python requirements

Install all needed python packages

If you have a virtualenv, activate it! source env/bin/activate or workon env

pip install -r requirements/requirements.txt

Create admin user, sample data and run!

  • Initial data, users and running commands

    1. Create a superuser (required to login on admin interface)

      $ python manage.py accounts_createsuperuser
      you@email.com
      P4$$W0Rd
    2. Populate with sample data (optional if you want sample data for testing)

      $ python manage.py populate
      

      credentials for /admin will be email: admin@example.com passwd: admin

    3. Run

      $ python manage.py runserver --host 0.0.0.0 --port 5000

Deployment

Check wsgi.py, wsgi_gunicorn.py and scripts under /etc folder for deployment options or check documentation

DOCS

Documentation is not complete yet, but is being written at:

http://quokkaproject.org/documentation

If you want to help writing the docs please go to https://github.com/quokkaproject/quokkaproject.github.io

Also there is a Wiki

NOTE: the content from wiki will be moved to /documentation

Hosting

You can host a Quokka website in any VPS or cloud which supports Python and Flask + MongoDB access, a good option is to host the database in MongoLab if your hosting server does not provide Mongo.

python   flask   mongo  

Details and Features

Bit.ly integration

Quokka has Bit.ly integration to short post urls. In quokka/settings.py you can find the details of how to configure with your data. Check both items: SHORTENER_SETTINGS and SHORTENER_ENABLED. By default the shortener is disable, but you can change it putting True in the SHORTENER_ENABLED config.

Do not change settings.py file, use a local_settings.py or export QUOKKA_SHORTENED_ENABLED="@bool true" to your env

FAQ

Why another CMS?

There is a large number of great CMS's in Python ecosystem (Plone, Opps, Mezannine, DjangoCMS etc), each one has its own patterns for extension development and theme management. A CMS can take a its role as "Product" or as "Platform" and for Quokka the idea is to play in both scenarios, The CMS should be easy to deploy, extensions and themes should be "drop-in", it should be easy to develop extensions and also it should use a "schema-free" database. Until Quokka there was no CMS filling all these needs.

Why Flask?

Because Flask is Pythonic! In my research + experience it is the best framework to develop applications which rely on "pluggable features" thanks to its Blueprints and Extension patterns, also Flask plays well with any DB/ORM of choice. (see next question)

Why MongoDB?

Because database scheme migrations are no-happy for CMS and a Quokka CMS must be always happy to work with, so no-schema-migrations is needed with MongoDB! and Mongo is the easiest, flexible and most suitable NoSQL for CMS, also there is excellent extensions for Flask (MongoEngine and Flask-Admin) which supports MongoDB!

Why the project is named "Quokka?"

Because it is the happiest animal in the world!

20 FACTS ABOUT QUOKKAS

    1. Happiest animal in the world because they are known for how much they smile.
    1. They are marsupials
    1. They live on rottnest island named after quokkas because a Dutch guy thought they were large rats. Rottnest means "rats nest"
    1. They can climb trees
    1. Herbivores-they eat leaves,stems,grass,etc;
    1. They are nocturnal
    1. They can live for long periods of time, living off of the fat stored in their tails lol
    1. Females usually give birth once a year
    1. Quokkas are old enough to have babies at 1.5 years old!!
    1. Live 5-10 years
    1. Declining population—logging, pollution, killed by foxes,pet dogs, pet cats, humans,etc;😭😭
    1. They live in tall grass near water
    1. Btw if you meet a quokka don't feed it anything due to declining population because it could affect them
    1. Quokkas highest speed is 20mph
    1. They don't chew food.they just swallow it
    1. Closely related to the Rock Wallaby (in the picture^^^)
    1. Scientific name is Setonix Brachyurus
    1. Joey stays with mom for 35 weeks
    1. Quokkas recycle a small amount of their bodies waste products
    1. They create their own trails and paths to get food and runaway from predators.

License

This project is licensed under the MIT license, see LICENSE for more details.

This project adheres to the [Open Code of Conduct][code-of-conduct]. By participating, you are expected to honor this code. [code-of-conduct]: http://todogroup.org/opencodeofconduct/#QuokkaProject/rochacbruno@gmail.com

About

CMS (Content Management System) - Python, Flask and MongoDB

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 55.9%
  • Python 24.8%
  • HTML 14.1%
  • CSS 3.8%
  • Shell 1.4%
  • Makefile 0.0%