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 runs on Python 2.7 (Python 3 support is being developed)
User '[email protected]' and passwd 'admin' to login in to /admin
- DEMO: http://demo.quokkaproject.org (stable - master branch)
- Development Demo: http://development.quokkaproject.org (unstable - development branch)
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
You have 2 options RUN LOCAL or RUN IN DOCKER
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
-
Quokka requires a MongoDB instance running to connect.
-
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
-
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 =============================================================
-
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 (for media conversions) you may need the following requirements on your operating system
- Ubuntu/Debian
sudo apt-get install libtiff5-dev libjpeg8-dev zlib1g-dev libfreetype6-dev
- Alpine Linux
apk add gcc python py-pip libjpeg zlib zlib-dev tiff freetype git py-pillow python-dev musl-dev
- Ubuntu/Debian
Install all needed python packages
activate your virtualenv if you want
pip install -r requirements/requirements.txt
-
Initial data, users and running commands
-
Create a superuser (required to login on admin interface)
$ python manage.py accounts_createsuperuser [email protected] P4$$W0Rd
-
Populate with sample data (optional if you want sample data)
$ python manage.py populate
credentials for /admin will be email: [email protected] passwd: admin
-
Run
$ python manage.py runserver --host 0.0.0.0 --port 5000
- Site on http://localhost:5000
- Admin on http://localhost:5000/admin
-
- Run pre built docker images with everything pre-installed
- You will need docker and docker compose installed in your machine
- Once in Docker all data is stored behind quokka/etc folder
- Docker - https://docs.docker.com/installation/
- Docker-Compose - https://docs.docker.com/compose/install/
Ensure that local port 27017(mongo) is not being used on your computer
-
- Easiest way is just running the following command in quokka root folder
docker-compose up
use -d on above to leave it as a daemon
- You can create a new admin user to login and start posting
docker-compose run web python manage.py accounts_createsuperuser
- Or populate with sample data (optional)
docker-compose run web python manage.py populate
credentials for /admin will be email: [email protected] passwd: admin
- You enter Quokka Shell (in a separate console) or run any other command in place of *shell
docker-compose run web python manage.py shell
(each in separate shells or use -d option)
1. run mongo container
```bash
docker run -v $PWD/etc/mongodata:/data/db -p 27017:27017 --name mongo mongo
```
2. run quokka web app container
```bash
docker run -e "QUOKKA_MONGODB_HOST=mongo" -p 5000:5000 --link mongo:mongo -v $PWD:/quokka --workdir /quokka -t -i quokka/quokkadev python manage.py runserver --host 0.0.0.0
```
3. run quokka shell if needed
```bash
docker run -e "QUOKKA_MONGODB_HOST=mongo" -p 5000:5000 --link mongo:mongo -v $PWD:/quokka --workdir /quokka -t -i quokka/quokkadev python manage.py shell
```
Check wsgi.py
, wsgi_gunicorn.py
and scripts under /etc folder for deployment options or check documentation
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
- About & Features
- Installing and running
- Requirements
- Extending & Installing modules
- Admin interface
- Project tree
- Team & Committers
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.
- PythonAnywhere can run Quokka with Mongo hosted at MongoLab
- DigitalOcean is a good option for a VPS
- Jelastic Cloud has the easiest Quokka deployment - http://docs.jelastic.com/ru/quokka-cms
- OpenShift one click deploy
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
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.
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)
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!
Because it is the happiest animal in the world!
-
- Happiest animal in the world because they are known for how much they smile.
-
- They are marsupials
-
- They live on rottnest island named after quokkas because a Dutch guy thought they were large rats. Rottnest means "rats nest"
-
- They can climb trees
-
- Herbivores-they eat leaves,stems,grass,etc;
-
- They are nocturnal
-
- They can live for long periods of time, living off of the fat stored in their tails lol
-
- Females usually give birth once a year
-
- Quokkas are old enough to have babies at 1.5 years old!!
-
- Live 5-10 years
-
- Declining population—logging, pollution, killed by foxes,pet dogs, pet cats, humans,etc;😭😭
-
- They live in tall grass near water
-
- Btw if you meet a quokka don't feed it anything due to declining population because it could affect them
-
- Quokkas highest speed is 20mph
-
- They don't chew food.they just swallow it
-
- Closely related to the Rock Wallaby (in the picture^^^)
-
- Scientific name is Setonix Brachyurus
-
- Joey stays with mom for 35 weeks
-
- Quokkas recycle a small amount of their bodies waste products
-
- They create their own trails and paths to get food and runaway from predators.
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/[email protected]