Metadata-Version: 2.1
Name: artd-nequi
Version: 0.0.1
Summary: A Django app to integrato with Nequi payment gateway
Home-page: https://www.artd.com.co/
Author: Jonathan Urzola Maladonado
Author-email: jonathan@artd.com.co
Keywords: pypi,cicd,python
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 4.2
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.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Description-Content-Type: text/markdown
License-File: LICENSE

=================
Nequi Integration
=================

A Django app to create Nequi integration.


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

1. Add "artd_nequi" to your INSTALLED_APPS setting like this:
    
        INSTALLED_APPS = [
            ...
            "django_json_widget",
            "artd_location",
            "artd_partner",
            "artd_nequi",
        ]

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

3. Run ``python manage.py create_countries`` to create countries.

4. Run ``python manage.py create_colombian_regions`` to create colombian regions.

5. Run ``python manage.py create_colombian_cities`` to create colombian cities.

6. Start the development server and visit http://127.0.0.1:8000/admin/
