Kitware / visualizer

The ParaViewWeb Visualizer application which can be used standalone or as a component within another web context.
https://kitware.github.io/visualizer/
BSD 3-Clause "New" or "Revised" License
115 stars 28 forks source link

Deploying paraview web visualizer using Flask #89

Closed GUT2060 closed 4 years ago

GUT2060 commented 4 years ago

Hi , Using this tutorial http://kitware.github.io/paraviewweb/docs/ec2.html , i was able to deploy the visualizer using apache on a Google cloud virtual machine .

Is there a tutorial on how to do that using flask ? Any guidelines on how to do so would be helpful

Thanks

jourdain commented 4 years ago

Apache just do the proxying. You could use flask to serve what ever you need/want and still use apache on the front to forward the requests to flask.

GUT2060 commented 4 years ago

@jourdain thanks