djangoca

Base para Proyectos Django con CRUDS Automáticos


License
MIT
Install
pip install djangoca==0.2

Documentation

===== Base-Django

Base Django es un proyecto que generar CRUDS Automáticos para cada modelo registrado, además tiene la gestión de Usuarios modificada de manera geenral para su creación, edición, listado y eliminación.

Quick start

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

    INSTALLED_APPS = [ ... 'base_django', ]

  2. Include the base_django URLconf in your project urls.py like this::

    path('base_django/', include('base_django.urls')),

  3. Run python manage.py migrate to create the polls models.

  4. Start the development server and visit http://127.0.0.1:8000/admin/ to create a base_django (you'll need the Admin app enabled).

  5. Visit http://127.0.0.1:8000/base_django/ to participate in the poll.