-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.bat
More file actions
47 lines (42 loc) · 1.1 KB
/
Copy pathsetup.bat
File metadata and controls
47 lines (42 loc) · 1.1 KB
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
@echo off
echo.
echo ====================================================
echo Personal Agentic Factory - Windows Setup
echo ====================================================
echo.
:: Check Python
python --version >nul 2>&1
if errorlevel 1 (
echo [ERROR] Python not found. Install from https://python.org
pause
exit /b 1
)
echo [OK] Python found
:: Install deps
echo [PAF] Installing dependencies...
pip install -r requirements.txt --quiet
echo [OK] Dependencies installed
:: Copy .env
if not exist .env (
copy .env.example .env
echo [WARN] .env created. Edit it and add your API keys before running.
) else (
echo [OK] .env already exists
)
:: Create dirs
mkdir factory_jobs 2>nul
mkdir factory_state 2>nul
mkdir factory_logs 2>nul
echo [OK] Output directories created
echo.
echo ====================================================
echo Setup done. Next steps:
echo.
echo 1. Edit .env with your API keys
echo 2. Run: python main.py
echo.
echo Or test directly:
echo python main.py build "build a BTC price tracker"
echo ====================================================
echo.
pause