Sistema NEXUS v3.4 migrado con: Estructura principal: - core/orchestration: Sistema SIMCO + CAPVED (27 directivas, 28 perfiles) - core/catalog: Catalogo de funcionalidades reutilizables - shared/knowledge-base: Base de conocimiento compartida - devtools/scripts: Herramientas de desarrollo - control-plane/registries: Control de servicios y CI/CD - orchestration/: Configuracion de orquestacion de agentes Proyectos incluidos (11): - gamilit (submodule -> GitHub) - trading-platform (OrbiquanTIA) - erp-suite con 5 verticales: - erp-core, construccion, vidrio-templado - mecanicas-diesel, retail, clinicas - betting-analytics - inmobiliaria-analytics - platform_marketing_content - pos-micro, erp-basico Configuracion: - .gitignore completo para Node.js/Python/Docker - gamilit como submodule (git@github.com:rckrdmrd/gamilit-workspace.git) - Sistema de puertos estandarizado (3005-3199) Generated with NEXUS v3.4 Migration System EPIC-010: Configuracion Git y Repositorios
48 lines
1.5 KiB
Python
48 lines
1.5 KiB
Python
# WSGI Handler sample configuration file.
|
|
#
|
|
# Change the appropriate settings below, in order to provide the parameters
|
|
# that would normally be passed in the command-line.
|
|
# (at least conf['addons_path'])
|
|
#
|
|
# For generic wsgi handlers a global application is defined.
|
|
# For uwsgi this should work:
|
|
# $ uwsgi_python --http :9090 --pythonpath . --wsgi-file odoo-wsgi.py
|
|
#
|
|
# For gunicorn additional globals need to be defined in the Gunicorn section.
|
|
# Then the following command should run:
|
|
# $ gunicorn odoo.http:root --pythonpath . -c odoo-wsgi.py
|
|
|
|
from odoo.http import root as application # noqa: F401
|
|
from odoo.tools import config as conf # noqa: F401
|
|
|
|
# ----------------------------------------------------------
|
|
# Common
|
|
# ----------------------------------------------------------
|
|
|
|
# Path to the Odoo Addons repository (comma-separated for
|
|
# multiple locations)
|
|
#conf['addons_path'] = './odoo/addons,./addons'
|
|
|
|
# Optional database config if not using local socket
|
|
#conf['db_name'] = 'mycompany'
|
|
#conf['db_host'] = 'localhost'
|
|
#conf['db_user'] = 'foo'
|
|
#conf['db_port'] = 5432
|
|
#conf['db_password'] = 'secret'
|
|
|
|
# ----------------------------------------------------------
|
|
# Initializing the server
|
|
# ----------------------------------------------------------
|
|
|
|
application.initialize()
|
|
|
|
# ----------------------------------------------------------
|
|
# Gunicorn
|
|
# ----------------------------------------------------------
|
|
# Standard port is 8069
|
|
bind = '127.0.0.1:8069'
|
|
pidfile = '.gunicorn.pid'
|
|
workers = 4
|
|
timeout = 240
|
|
max_requests = 2000
|