-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcode_rocket_launcher.bat
More file actions
46 lines (44 loc) · 917 Bytes
/
code_rocket_launcher.bat
File metadata and controls
46 lines (44 loc) · 917 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
38
39
40
41
42
43
44
45
46
@echo off
title CodeRocket Launcher - Captain's Console
:MENU
cls
echo ==========================================
echo 🚀 CodeRocket Launcher Menu 🚀
echo ==========================================
echo [1] Pull latest updates from GitHub
echo [2] Push changes to GitHub
echo [3] Run migration scripts
echo [4] Launch CodeRocket App
echo [5] Check API usage (popup + email)
echo [0] Exit
echo ==========================================
set /p choice=Enter your choice:
if "%choice%"=="1" (
call auto_update_coderocket.bat
pause
goto MENU
)
if "%choice%"=="2" (
call push_to_github.bat
pause
goto MENU
)
if "%choice%"=="3" (
call run_migrations.bat
pause
goto MENU
)
if "%choice%"=="4" (
call launch_coderocket_app.bat
pause
goto MENU
)
if "%choice%"=="5" (
python check_api_usage.py
pause
goto MENU
)
if "%choice%"=="0" (
exit
)
goto MENU