fix(builder): robustecer carga local de elementor en windows

This commit is contained in:
komkida91
2026-02-12 19:03:21 +01:00
parent 6aad246fbc
commit 06d4781dc6
5 changed files with 978 additions and 1684 deletions

View File

@@ -40,7 +40,7 @@ def handle_404(e):
@app.errorhandler(Exception)
def handle_exception(e):
print(f" EXCEPCIÓN: {e}")
print(f"ERROR: EXCEPCION: {e}")
return jsonify({'success': False, 'error': str(e)}), 500
# Middleware
@@ -51,5 +51,5 @@ def add_header(response):
return response
if __name__ == '__main__':
print(f"🚀 GKACHELE SaaS Modular iniciado en puerto {PORT}")
print(f"GKACHELE SaaS Modular iniciado en puerto {PORT}")
app.run(debug=True, host='0.0.0.0', port=PORT)