netron-docker-diff / wrapper.sh
brian-xetdata's picture
Adding reverse proxy for netron
f24e0f7
raw
history blame
136 Bytes
#!/bin/bash
# Start the netron server
netron &
# Start the the web app
uvicorn app:app --host 0.0.0.0 --port 7860 &
wait -n
exit $?