Metadata-Version: 2.1
Name: django-changelogs
Version: 0.1
Summary: A changelog app for Django
Home-page: https://github.com/divisia/django-changelogs/
Author: Ömer Selçuk
Author-email: omrfyyz@gmail.com
License: BSD-3-Clause  # Example license
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 3.0
Classifier: Framework :: Django :: 3.1
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Description-Content-Type: text/markdown

Changelogs
==========

Changelogs is, as the name implies, a changelog app to keep track of your application's version.


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

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

    ```
    INSTALLED_APPS = [
    ...
    'changelogs',
    ]
    ```

2. Run ``python manage.py migrate`` to create necessary models.

3. Start the development server and visit http://127.0.0.1:8000/admin/changelogs/
   to create a changelog version (you'll need the Admin app enabled).



