fabriquedoc/frontend/run.ps1

17 lines
638 B
PowerShell
Raw Normal View History

2024-12-31 22:00:07 +00:00
# Script pour lancer l'application Streamlit FabriqueDoc localement
# Ce script fonctionne sur Windows
# Définir l'adresse du backend
$env:FABRIQUEDOC_ENDPOINT = "http://localhost:8000"
# Vérifier si Streamlit est installé
if (!(Get-Command streamlit -ErrorAction SilentlyContinue)) {
Write-Host "Streamlit n'est pas installé. Veuillez l'installer en utilisant 'pip install streamlit'."
exit 1
}
# Lancer l'application Streamlit
Write-Host "Lancement de l'application Streamlit FabriqueDoc..."
streamlit run main.py --server.port=8051
# Note : Si le port 8051 est déjà utilisé, vous pouvez le changer pour un autre port