Metadata-Version: 2.1
Name: artd-product
Version: 0.0.19
Summary: A Django app to administrate products
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

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

A Django app to create products.


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

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

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

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

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