Metadata-Version: 2.1
Name: artd-price-list
Version: 0.0.7
Summary: A Django app to administrate products
Home-page: https://www.artd.com.co/
Author: Jonathan Urzola Maladonado
Author-email: jonathan@artd.com.co
License: UNKNOWN
Keywords: pypi,cicd,python
Platform: UNKNOWN
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

=================
Products
=================

A Django app to create products.


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

1. Add "artd_product" to your INSTALLED_APPS setting like this:
    
        INSTALLED_APPS = [
            ...
            'artd_location',
            'artd_product',
            'artd_partner',
            'artd_price_list',
        ]

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

3. Run ``python manage.py create_taxes`` to create tax types.

4. run ``python manage.py create_countries`` to create the countries.

5. run ``python manage.py create_regions`` to create the regions.

6. run ``python manage.py create_cities`` to create the cities.



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

