Hi all
I am trying to configure a Binder file so the notebook it runs would accept file uploads larger than 10Mb, with the ipywidget.
From this issue I learned this was due to a Tornado limitation and indeed I managed to fix this locally by generating a jupyter_notebook_config.py
file and then editing the appropriate line to
c.NotebookApp.tornado_settings = {"websocket_max_message_size": 100 * 1024 * 1024}
However I don’t know how to do the same for Binder, particularly through postBuild
.
Can anyone help?
Thank you!