etoile_polaire/frontend/install.sh
2025-04-01 16:33:54 +02:00

13 lines
No EOL
270 B
Bash
Executable file

#!/bin/bash
# Installation des dépendances
npm install
# Création du fichier .env
cat > .env << EOL
VITE_API_URL=http://localhost:8000
VITE_WS_URL=ws://localhost:8000
EOL
echo "Installation terminée !"
echo "Pour lancer le serveur de développement : npm run dev"