Metadata-Version: 2.1
Name: django-bootstrapper
Version: 0.0.1
Summary: A simple bootstrapper for django applications
Home-page: http://github.com/contraslash/django-bootstrapper
Author: contraslash S.A.S.
Author-email: ma0@contraslash.com
License: MIT
Project-URL: Bug Reports, https://github.com/contraslash/django-bootstrapper/issues
Project-URL: Source, https://github.com/contraslash/django-bootstrapper
Project-URL: Contraslash, https://contraslash.com/
Description: # Django Bootstrapper
        
        This is a simple django project generator, it uses django default command and complete the schema generating a full application ready to use, including base, authentication, and template_base applications.
        
        The main idea behind this projects is to automate some labors when we create projects.
        
        The project folder structure will be:
        
        ```
        project_folder
        ├── applications
        │   ├── authentication (Authentication app from https://github.com/contraslash/authentication-django)
        │   ├── base_template (Base template from https://github.com/contraslash/template_cdn_bootstrap)
        │   └── __init__.py
        ├── base (base from https://github.com/contraslash/base-django)
        ├── manage.py
        └── project_name
            ├── __init__.py
            ├── settings.py
            ├── urls.py
            └── wsgi.py
        
        ```
        The project is git submodule based, and creates submodules for `authentication`, `base_template` and `base`, 
        all open source projects  created by contraslash.
        
        Also we recommend to use [Django Crud Generator](https://django-crud-generator.readthedocs.io/en/latest/) to create CRUD
        automatically.
        
        Our main goal is to create a project with a structure that we can extend using templates and existing files.
         
        If you want to modify and add to your tree any submodule, we recommend to follow [this question](https://stackoverflow.com/questions/1260748/how-do-i-remove-a-submodule) 
        
Keywords: django bootstrapping tool
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
