• release_2020_09_30 Intalled_apps:

    'product.utiles.modules.scheduler_integration',

    Para habilitar creación de modulos desde estudio: serversettings.py

    MODULE_BUILDER = True

    en settings.py el final:

    try:
       from ext.base.installed_apps import installed_apps
       for ext_app in installed_apps:
           ext_app_name = 'ext.modules.{}'.format(ext_app)
           if not ext_app_name in INSTALLED_APPS:
               INSTALLED_APPS = INSTALLED_APPS + (ext_app_name, )
    except:
       pass
    Edited by Brayan Andrés Quiñonez Ramirez
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment