Metadata-Version: 2.0
Name: plugs-post
Version: 0.2.1
Summary: Post APP
Home-page: https://github.com/solocompt/plugs-post
Author: Solo
Author-email: geral@solo.com.pt
License: MIT
Keywords: plugs-post
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: Django :: 1.11
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Requires-Dist: plugs-core (>=0.1.6,<1.0.0)

=============================
Plugs Post
=============================

.. image:: https://badge.fury.io/py/plugs-post.png
    :target: https://badge.fury.io/py/plugs-post

.. image:: https://travis-ci.org/yo-solo/plugs-post.png?branch=master
    :target: https://travis-ci.org/yo-solo/plugs-post

.. image:: https://codecov.io/github/yo-solo/plugs-post/coverage.svg?branch=master
        :target: https://codecov.io/github/yo-solo/plugs-post?branch=master



Quick start
-----------

1. Install using Pip

   .. code-block:: bash

                   $ pip install plugs_post

2. Add it to INSTALLED_APPS

   .. code-block:: python

                   INSTALLED_APPS = (
                   # other apps
                   'plugs_post'
                   )

3. Run migrate

   .. code-block:: bash

                   $ python manage.py migrate plugs_post

4. Register the Viewsets

   .. code-block:: python

                   from plugs_post.views import PostViewSet, PostSectionViewSet

                   ROUTER = routers.DefaultRouter()

                   ROUTER.register(r'posts', PostViewSet)
                   ROUTER.register(r'post_sections', PostSectionViewSet)

                   urlpatterns = [
                   url(r'^', include(ROUTER.urls))
                   ]




History
-------

0.1.0 (2016-12-29)
++++++++++++++++++

* First release on PyPI.


