Metadata-Version: 1.1
Name: quokka
Version: 0.2.0
Summary: Flexible & modular CMS powered by Flask and MongoDB
Home-page: http://quokkaproject.org
Author: Bruno Rocha <rochacbruno@gmail.com>
Author-email: quokka-developers@googlegroups.com
License: MIT License
Download-URL: https://github.com/pythonhub/quokka/tarball/master
Description: [![Flattr](http://api.flattr.com/button/flattr-badge-large.png)](http://flattr.com/thing/1680610/rochacbrunoquokka-on-GitHub)
        [![Gittip](http://badgr.co/gittip/rochacbruno.png)](https://www.gittip.com/rochacbruno/)
        [![Travis CI](http://badgr.co/travis-ci/pythonhub%2Fquokka.png)](https://travis-ci.org/pythonhub/quokka)
        [![Coverage
        Status](https://coveralls.io/repos/pythonhub/quokka/badge.png)](https://coveralls.io/r/pythonhub/quokka)
        [![Twitter](http://badgr.co/twitter/@quokkaproject.png?bg=%2302779E)](http://twitter.com/quokkaproject)
        
        Quokka project
        ===============================================
        
        ### Flask and MongoDB powered CMS
        #### (alpha version, work in progress)
        
        <p align="center">
        <img src="docs/logo.png" alt="quokka cms" />
        </p>
        
        
        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
        
        1. Get Quokka
        
        ```bash
        $ git clone https://github.com/pythonhub/quokka
        $ cd quokka
        $ pip install -r requirements.txt
        ```
        
        2. Define your MongoDB settings
        
        ```bash
        $ $EDITOR quokka/local_settings.py
        ===============quokka/quokka/local_settings.py===============
        MONGODB_SETTINGS = {'DB': 'your_mongo_db'}
        DEBUG = True
        =============================================================
        ```
        
        3. Populate with sample data (optional)
        
        ```bash
        $ python manage.py populate 
        
        ```
        
        4. Create a superuser
        
        ```bash
        $ python manage.py createsuperuser
        you@email.com
        P4$$W0Rd
        ```
        
        5. Run
        
        ```bash
        $ python manage.py runserver
        ```
        6. Access on http://localhost:5000 
        7. Admin on http://localhost:5000/admin
        
        or by making your server reachable on other networks
        
        ```bash
        $ python manage.py run0
        ```
        6. Access on http://0.0.0.0:8000  
        7. Admin on http://0.0.0.0:8000/admin
        
        
        Docs on [Wiki](https://github.com/pythonhub/quokka/wiki)
        ===============================================
        
        * [About & Features](https://github.com/pythonhub/quokka/wiki/about)
        * [Installing and running](https://github.com/pythonhub/quokka/wiki/installation)
        * [Requirements](https://github.com/pythonhub/quokka/wiki/requirements)
        * [Extending & Installing modules](https://github.com/pythonhub/quokka/wiki/plugins)
        * [Admin interface](https://github.com/pythonhub/quokka/wiki/screencast)
        * [Project tree](https://github.com/pythonhub/quokka/wiki/project-tree)
        * [Team & Commiters](https://github.com/pythonhub/quokka/graphs/contributors)
        
        
        
        ![python](docs/python_powered.png)
        &nbsp;
        ![flask](docs/flask_powered.png)
        &nbsp;
        ![mongo](docs/mongo_powered.jpg)
        &nbsp;
        [![pythonhub](http://secure.gravatar.com/avatar/fa9ccd40c6da8a0a934a383ffeb988e6?s=78)](http://github.com/pythonhub)
        
        
        
        [![Bitdeli Badge](https://d2weczhvl823v0.cloudfront.net/pythonhub/quokka/trend.png)](https://bitdeli.com/free "Bitdeli Badge")
        
        
Keywords: quokka cms flask publishing mongodb
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Web Environment
Classifier: Framework :: Flask
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: JavaScript
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Python Modules
