iagofp commited on
Commit
7069124
1 Parent(s): cafba23

Eliminar binarios del tracking git para deploy en HF Spaces

Browse files

Desregistra history.db (ya en .gitignore, runtime artifact)
Desregistra favicon.png y anade chatbot/public/ a .gitignore
Sustituye favicon PNG por emoji SVG inline en index.html

Files changed (2) hide show
  1. .gitignore +4 -1
  2. chatbot/index.html +1 -1
.gitignore CHANGED
@@ -59,4 +59,7 @@ backend/*.sqlite3
59
  !chatbot/.env.production
60
 
61
  # Large/raw data not needed in git
62
- data/ml-latest/*.csv
 
 
 
 
59
  !chatbot/.env.production
60
 
61
  # Large/raw data not needed in git
62
+ data/ml-latest/*.csv
63
+
64
+ # Static assets with binary files (handled at build time)
65
+ chatbot/public/
chatbot/index.html CHANGED
@@ -3,7 +3,7 @@
3
  <head>
4
  <meta charset="UTF-8" />
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0, interactive-widget=resizes-content" />
6
- <link rel="icon" type="image/png" href="/favicon.png" />
7
  <title>Valor Sentimental 路 Recomendador emocional de cine</title>
8
  </head>
9
  <body>
 
3
  <head>
4
  <meta charset="UTF-8" />
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0, interactive-widget=resizes-content" />
6
+ <link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>馃幀</text></svg>" />
7
  <title>Valor Sentimental 路 Recomendador emocional de cine</title>
8
  </head>
9
  <body>