zzmez commited on
Commit
79f993e
·
1 Parent(s): 5648788

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -1
app.py CHANGED
@@ -1,5 +1,10 @@
1
  import gradio as gr
2
  from utils.gradio_utils import *
 
 
 
 
 
3
 
4
  domains_template = """tenderax.com
5
  reach-fortune.com
@@ -147,4 +152,4 @@ with gr.Blocks() as aeon:
147
  with gr.Accordion("Tips and tricks"):
148
  gr.Markdown("The subdomains are IPs from [1-19] and [201-254]")
149
 
150
- aeon.launch(auth=("admin", "13441369"))
 
1
  import gradio as gr
2
  from utils.gradio_utils import *
3
+ import os
4
+
5
+ user = os.environ.get("user")
6
+ password = os.environ.get("password")
7
+
8
 
9
  domains_template = """tenderax.com
10
  reach-fortune.com
 
152
  with gr.Accordion("Tips and tricks"):
153
  gr.Markdown("The subdomains are IPs from [1-19] and [201-254]")
154
 
155
+ aeon.launch(auth=(user, password))