gauravlochab commited on
Commit
c7e5180
·
1 Parent(s): 785d2a0

removed logging

Browse files
Files changed (1) hide show
  1. app.py +9 -1
app.py CHANGED
@@ -2804,7 +2804,15 @@ def dashboard():
2804
 
2805
  # Launch the dashboard
2806
  if __name__ == "__main__":
2807
- dashboard().launch()
 
 
 
 
 
 
 
 
2808
 
2809
  def generate_adjusted_apr_report():
2810
  """
 
2804
 
2805
  # Launch the dashboard
2806
  if __name__ == "__main__":
2807
+ dashboard().launch(
2808
+ server_name="0.0.0.0",
2809
+ server_port=7860,
2810
+ share=False,
2811
+ show_error=True,
2812
+ quiet=True, # Reduce startup logging
2813
+ enable_queue=False, # Disable queue to reduce overhead
2814
+ max_threads=1 # Limit threads to reduce memory usage
2815
+ )
2816
 
2817
  def generate_adjusted_apr_report():
2818
  """