Joaquin Matres
Joaquin Matres
See MVP here https://github.com/gdsfactory/kweb/issues/3
TODO: - [ ] Document how to deploy gdsfactory with kweb - [ ] make an ipywidget for notebooks using klayout
that worked! ``` import asyncio import uvicorn from kweb.main import app if __name__ == "__main__": config = uvicorn.Config(app) server = uvicorn.Server(config) loop = asyncio.get_event_loop() loop.create_task(server.serve()) ```
That looks great! we have a jupyter demo 
we have - https://github.com/gdsfactory/kweb - gdsfactory webapp in https://github.com/gdsfactory/gplugins/
Now that we have schematic how can we get LVS working to make sure both schematic and layout match? See [slide](https://docs.google.com/presentation/d/1_ZmUxbaHWo_lQP17dlT1FWX-XD8D9w7-FcuEih48d_0/edit#slide=id.g1826f6bbcba_0_0) @SkandanC @tvt173 @damienbonneau @sebastian-goeldi
this was completed [here](https://gdsfactory.github.io/gplugins/notebooks/11_get_netlist_spice.html)
Maybe we can use the netlist visualizer from the schematic driven layout 
https://github.com/flexcompute/tidy3d/tree/develop/tidy3d @SkandanC @dusandinho
closing this feel free to reopen it in https://github.com/gdsfactory/gplugins