Metadata-Version: 2.1
Name: django-up
Version: 0.1
Summary: A simple Django app to deploy Django Projects using Gunicorn.
Home-page: https://github.com/mauriballes/django-up/
Author: Mauricio Ballesteros Valladares
Author-email: mballes95@gmail.com
License: MIT License
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 2.0
Classifier: Framework :: Django :: 2.1
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: Unix
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Requires-Python: >=3.0
Requires-Dist: Django
Requires-Dist: gunicorn
Requires-Dist: fabric2
Requires-Dist: PyYAML

=========
Django Up
=========

Django Up is a simple Django app to make a continuous integrations of your Django
projects. By the moment, you only can use ``gunicorn``

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

1. Add "djangoup" to your INSTALLED_APPS setting like this::

    INSTALLED_APPS = [
        ...
        'djangoup',
    ]

2. Then, follow the instructions on the `Docs File <DOCS.md>`_ file.


