-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.bat
More file actions
37 lines (34 loc) · 1.03 KB
/
Copy pathsetup.bat
File metadata and controls
37 lines (34 loc) · 1.03 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
@echo off
echo ============================================================
echo LinkedIn Auto-Poster - Setup
echo ============================================================
echo.
echo [1/3] Installing Python dependencies...
pip install -r requirements.txt
echo.
echo [2/3] Installing Playwright browser...
playwright install chromium
echo.
echo [3/3] Setup complete!
echo.
echo ============================================================
echo NEXT STEPS:
echo ============================================================
echo.
echo 1. Start the dashboard and run the first-run setup wizard:
echo python src\run.py approve
echo.
echo 2. Login to LinkedIn (one-time):
echo python src\linkedin_poster.py --login
echo.
echo 3. (Optional) Setup Gmail for newsletter scraping:
echo python src\gmail_setup.py
echo.
echo 4. Schedule daily runs:
echo setup_scheduled_tasks.bat
echo.
echo 5. Or run manually:
echo python src\scheduler.py
echo.
echo ============================================================
pause