-
Notifications
You must be signed in to change notification settings - Fork 6
/
start.bat
52 lines (40 loc) · 1.15 KB
/
start.bat
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
@REM Voir début fichier reset.bat pour infos dont l'encodage de fin de ligne...
@echo off
chcp 65001 > nul
echo Nettoyage des fichiers log debugbar...
if exist storage\debugbar (
cd storage\debugbar
for %%i in (*) do if not "%%i"==".gitignore" del /f /q "%%i"
for /d %%i in (*) do rmdir /s /q "%%i"
cd ..\..
echo Fichiers log debugbar nettoyés.
) else (
echo Le dossier storage\debugbar n'existe pas.
)
if exist storage\logs\laravel.log (
del /f storage\logs\laravel.log
echo storage\logs\laravel.log supprimé.
) else (
echo storage\logs\laravel.log n'existe pas.
)
echo.
echo Nettoyage des divers fichiers cache...
call php artisan optimize
call php artisan cache:clear
call php artisan view:clear
call php artisan config:clear
echo.
echo Démarrage des serveurs.
start /b npm run dev
start /b php artisan reverb:start
start /b php artisan serve
@REM Start serveur de Mail
@REM → http://localhost:8025/#
start /b config/MailHog_windows_amd64.exe
REM Envoi de l'email de Test
@REM powershell.exe -ExecutionPolicy Bypass -File "testMailServer.ps1"
@REM php send_email.php
echo.
echo Les serveurs sont démarrés.
echo.
pause