Metadata-Version: 2.1
Name: django-app-bootstrap
Version: 1.0.8
Summary: Quickly generate application from django model files
Home-page: https://github.com/opencbsoft/django-app-bootstrap
Author: Cristian Boboc
Author-email: cristi@cbsoft.ro
License: GNU
Platform: UNKNOWN

# DJANGO APP BOOTSTRAP

A simple django application that can speedup your development by generating code from models.

Specify a different application structure to process by entering the full path to the folder in settings.py variable BOOTSTRAP_FOLDER

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

1. pip install django-app-bootstrapp
2. Add "django_app_bootstrap" to your INSTALLED_APPS setting like this::

    INSTALLED_APPS = [
        ...
        'django_app_bootstrap',
    ]

3. Run `python manage.py bootstrap_app` to start the wizard.


