Metadata-Version: 2.1
Name: artd_channels
Version: 1.0.0
Summary: ArtD Channels.
Home-page: https://www.artd.com.co/
Author: David Mora
Author-email: david@artd.com.co
License: BSD-3-Clause
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
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: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: Django>=5.1.1
Requires-Dist: django-admin>=2.0.2
Requires-Dist: django-json-widget>=2.0.1
Requires-Dist: artd-customer>=1.0.6
Requires-Dist: artd-location>=1.0.5
Requires-Dist: artd-modules>=1.0.5
Requires-Dist: artd-partner>=1.0.7
Requires-Dist: artd-service>=1.0.5

ArtD Channels
==============
Art Channels is a package that manage channels.
----------------------------------------------------
1. Add to your INSTALLED_APPS setting like this:

.. code-block:: python

    INSTALLED_APPS = [
        'artd_customer',
        'artd_location',
        'artd_modules',
        'artd_partner',
        'artd_service',
        'django_json_widget',
    ]

2. Run the migration commands:
   
.. code-block::
    
        python manage.py makemigrations
        python manage.py migrate

3. Run the seeder data:
   
.. code-block::

        python manage.py create_countries
        python manage.py create_colombian_regions
        python manage.py create_colombian_cities


