22 lines
511 B
Bash
Executable File
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 ""
|