zzmez commited on
Commit
430c2f6
·
1 Parent(s): dde30fa

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -2,6 +2,9 @@ import gradio as gr
2
  from utils.gradio_utils import *
3
  import os
4
 
 
 
 
5
  domains_template = """tenderax.com
6
  reach-fortune.com
7
  joyful-healthy-hair.com
@@ -154,4 +157,4 @@ with gr.Blocks() as aeon:
154
  """)
155
 
156
 
157
- aeon.launch()
 
2
  from utils.gradio_utils import *
3
  import os
4
 
5
+ USER = os.environ("USERNAME")
6
+ PASS = os.environ("PASSWORD")
7
+
8
  domains_template = """tenderax.com
9
  reach-fortune.com
10
  joyful-healthy-hair.com
 
157
  """)
158
 
159
 
160
+ aeon.launch(auth=(USER, PASS))