senal88 commited on
Commit
886f92a
·
verified ·
1 Parent(s): e1ddcee

Initialize Space with README and Gradio app

Browse files
Files changed (2) hide show
  1. README.md +5 -6
  2. app.py +13 -0
README.md CHANGED
@@ -1,12 +1,11 @@
1
  ---
2
- title: Infra Vps
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
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
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()