File size: 1,078 Bytes
fea1bd1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
@echo off
setlocal EnableDelayedExpansion

REM Navigate to script directory
cd /d "%~dp0"

echo.
echo [SUPEREZIO] Corrigindo formatacao do chainlit.toml...
echo.

REM Backup do arquivo atual
if exist chainlit.toml (
    copy chainlit.toml chainlit.toml.backup
    echo ✅ Backup criado: chainlit.toml.backup
)

REM Recreate chainlit.toml with proper formatting
(
    echo # chainlit.toml - Configuracao do Command Deck SUPEREZIO
    echo.
    echo [project]
    echo name = "SUPEREZIO | Command Deck"
    echo description = "Uma interface cognitiva desenvolvida por Marco Barreto, Gemini & ChatGPT."
    echo show_readme_as_default = true
    echo.
    echo [UI]
    echo custom_css = "public/superezio.css"
    echo.
    echo [UI.theme]
    echo background_color = "#0A192F"
    echo primary_color = "#FF6B35"
    echo text_color = "#CCD6F6"
) > chainlit.toml

echo ✅ Arquivo chainlit.toml corrigido com formatacao adequada!
echo.
echo Conteudo atual:
echo ----------------------------------------
type chainlit.toml
echo ----------------------------------------
echo.
pause