Files
WebNationsGlory_ServeurBuil…/setup.sh
y.campiontrebouta@innotexnas.ovh abb51904d7 initial commit
2026-02-04 19:04:46 +01:00

22 lines
511 B
Bash
Executable File

#!/bin/bash
# Rendre les scripts exécutables
chmod +x install.sh
chmod +x start.sh
# Créer les dossiers de data s'ils n'existent pas
mkdir -p backend/data
echo "✅ Préparation complète!"
echo ""
echo "📖 Documentation:"
echo " - README.md - Vue d'ensemble"
echo " - CONFIGURATION.md - Guide de configuration détaillé"
echo " - DEPLOYMENT.md - Déploiement en production"
echo ""
echo "🚀 Pour démarrer:"
echo " 1. ./install.sh"
echo " 2. Éditer backend/.env"
echo " 3. ./start.sh"
echo ""