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

=================
Loications
=================

A Django app to create locations.


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

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

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

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

4. Run ``python manage.py create_regions`` to create create regions

5. Run ``python manage.py create_cities`` to create create cities

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