Dani Arribas-Bel

Results 192 comments of Dani Arribas-Bel

I'd love to see this too! I'm playing with the `docker-compose.yml` to expand it with: ```yml fastchat-gradio-server: build: context: . dockerfile: Dockerfile environment: FASTCHAT_CONTROLLER_URL: http://fastchat-controller:21001 image: fastchat:latest depends_on: fastchat-controller: condition:...

**UPDATE**: solved it by removing the `localhost` bit implicit in the entrypoint: ```yml entrypoint: ["python3", "-m", "fastchat.serve.gradio_web_server", "--host", "0.0.0.0", "--port", "8001", "--controller-url", "http://fastchat-controller:21001"] ```

@jGaboardi Yes, that's right. Ideally, I want to get rid of that file and dynamically pull it from the PySAL meta package but, for now that it is. If you...

That's right, I think you should fork my fork (`darribas/notebooks`) and issue a PR there, which I'll pull in. Alternatively, we can wait on this until #53 gets merged, and...

Thanks very much for your answer. I actually found the repo as the only example I could find of a gitbook project sourcing notebooks, and that's what I was trying...

Thank you very much @patricksnape, it'd be fantastic to get this working!

Thanks very much for the answers! @jabooth my original idea was along your option 2. I've [pinged](https://github.com/GitbookIO/gitbook/issues/1373) the `gitbook` folks to see if there's any obvious thing I'm missing here...

OK I've just tried with a notebook example and the results are encouraging but not perfect yet. If I do: ``` jupyter nbconvert --to html --template basic mynb.ipynb mv mynb.html...

I've just pushed my experiments into a repo: > https://github.com/darribas/test_book `chapter-1/sub3.md` is the convert of `lab_03.ipynb` with a basic template. Let me know if you make any progress, super keen...

I vaguely remember trying that out yesterday and not fully working, but I might have done something wrong... At any rate, markdown does imply simplification so some things might get...