-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup-complete.bat
More file actions
37 lines (34 loc) · 857 Bytes
/
setup-complete.bat
File metadata and controls
37 lines (34 loc) · 857 Bytes
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
@echo off
echo ========================================
echo CONFIGURATION COMPLETE CITIL
echo ========================================
echo.
echo Configuration du backend Laravel...
call setup-backend.bat
echo.
echo Configuration du frontend React...
call setup-frontend.bat
echo.
echo ========================================
echo CONFIGURATION TERMINEE!
echo ========================================
echo.
echo Pour demarrer l'application complete:
echo.
echo 1. Ouvrir un terminal pour le backend:
echo cd citil-backend
echo php artisan serve
echo.
echo 2. Ouvrir un autre terminal pour le frontend:
echo cd citil-frontend
echo npm start
echo.
echo URLs:
echo - Backend API: http://localhost:8000
echo - Frontend: http://localhost:3000
echo.
echo Compte admin:
echo - Email: admin@citil.tg
echo - Mot de passe: password
echo.
pause