11 lines
154 B
Batchfile
11 lines
154 B
Batchfile
@echo off
|
|
setlocal
|
|
|
|
call "%~dp0start_ammc.bat"
|
|
call "%~dp0start_backend.bat"
|
|
|
|
start "" "http://localhost:8081"
|
|
|
|
echo [OK] AMMC + backend started
|
|
endlocal
|