Update app.py
Browse files
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=(
|
|
|
|
| 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))
|