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

This reverts commit 06d4781dc6.
This commit is contained in:
komkida91
2026-02-12 19:05:58 +01:00
parent 06d4781dc6
commit fe8657e495
5 changed files with 1662 additions and 956 deletions

View File

@@ -40,7 +40,7 @@ def handle_404(e):
@app.errorhandler(Exception)
def handle_exception(e):
print(f"ERROR: EXCEPCION: {e}")
print(f" EXCEPCIÓN: {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)