Initialize Space with README and Gradio app
Browse files
README.md
CHANGED
|
@@ -1,12 +1,11 @@
|
|
| 1 |
---
|
| 2 |
-
title:
|
| 3 |
-
emoji: 👁
|
| 4 |
-
colorFrom: yellow
|
| 5 |
-
colorTo: yellow
|
| 6 |
sdk: gradio
|
| 7 |
-
sdk_version: 6.6.0
|
| 8 |
app_file: app.py
|
|
|
|
| 9 |
pinned: false
|
| 10 |
---
|
| 11 |
|
| 12 |
-
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
title: infra-vps
|
|
|
|
|
|
|
|
|
|
| 3 |
sdk: gradio
|
|
|
|
| 4 |
app_file: app.py
|
| 5 |
+
license: mit
|
| 6 |
pinned: false
|
| 7 |
---
|
| 8 |
|
| 9 |
+
# Biblioteca de Infraestrutura VPS
|
| 10 |
+
|
| 11 |
+
Este Space reúne utilitários e documentação para infraestrutura de VPS.
|
app.py
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import gradio as gr
|
| 2 |
+
|
| 3 |
+
|
| 4 |
+
with gr.Blocks(title="infra-vps") as demo:
|
| 5 |
+
gr.Markdown("# Biblioteca de Infraestrutura VPS")
|
| 6 |
+
gr.Markdown(
|
| 7 |
+
"Space inicial criado com Gradio. "
|
| 8 |
+
"Adicione aqui os fluxos e ferramentas da sua infraestrutura."
|
| 9 |
+
)
|
| 10 |
+
|
| 11 |
+
|
| 12 |
+
if __name__ == "__main__":
|
| 13 |
+
demo.launch()
|