You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

13 lines
359 B

  1. #!/bin/sh
  2. set -e
  3. # forza stdout/stderr non bufferizzati
  4. export PYTHONUNBUFFERED=1
  5. # Avvio neutro: la modalita' viene letta dal config (config.yaml)
  6. #exec python -u -m app.main
  7. # Lanciamo l'interfaccia Web come processo principale
  8. # Sara' poi lei a gestire l'avvio di app.main
  9. exec streamlit run app/web_suite.py --server.port=8501 --server.address=0.0.0.0