Metadata-Version: 2.1
Name: django-base-setup
Version: 0.4.1.4
Summary: A Django app to setup a basic Django app with views and templates ready to be used.
Home-page: https://pypi.org/project/django-base-setup
Author: Praveen Malethia
Author-email: prince.malethia.36@gmail.com
License: MIT Licence
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 4.0
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
Requires-Python: >=3.6
Description-Content-Type: text/markdown

=====
Django Base Setup
=====

"Django Base Setup" is a Django app to help you setup a basic Django project.


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

1. Add "base_setup" to your INSTALLED_APPS setting like this::

    INSTALLED_APPS = [
        ...
        'base_setup',
    ]

2. Run ``python manage.py setup_base <<app_name>>`` to create the basic app.

3. Start the development server and visit http://127.0.0.1:8000/ (you'll see Obiwan-Kenobi).
