-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrun_factory.bat
More file actions
23 lines (18 loc) · 798 Bytes
/
run_factory.bat
File metadata and controls
23 lines (18 loc) · 798 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
@echo off
echo Waking up the Viral Brainrot Factory...
:: 1. Force the system to navigate to your exact project folder first
cd /d "C:\Users\ranab\OneDrive\Desktop\AutoContent"
:: 2. The Production Loop (Runs exactly 3 times)
FOR /L %%A IN (1,1,3) DO (
echo.
echo ========================================
echo COMMENCING FACTORY RUN: %%A OF 3
echo ========================================
"C:\Users\ranab\AppData\Local\Programs\Python\Python313\python.exe" main_pipeline.py
)
echo Pipeline execution complete.
echo Running inventory check and alert system...
:: 3. Run your custom email alert microservice ONCE at the end
"C:\Users\ranab\AppData\Local\Programs\Python\Python313\python.exe" reminder.py
echo Factory shutdown sequence complete.
pause