Metadata-Version: 2.1
Name: django-count-it
Version: 0.1.2
Summary: A simple Django app to create counters.
Home-page: https://www.github.com/dsfx3d/django-count-it
Author: dsfx3d
Author-email: dsfx3d@gmail.com
License: MIT License
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 2.1
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content

=====
Counter
=====

Counter is a simple Django app to create counters. 

Detailed documentation is in the "docs" directory.

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

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

    INSTALLED_APPS = [
        ...
        'counter',
    ]

2. Run `python manage.py migrate` to create the counter models.

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


