-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.bat
More file actions
38 lines (33 loc) Β· 915 Bytes
/
Copy pathsetup.bat
File metadata and controls
38 lines (33 loc) Β· 915 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
@echo off
echo π Setting up CoreAI project...
REM Backend Node.js setup
echo π¦ Installing backend dependencies...
cd backend
call npm install
REM Frontend setup
echo π¨ Installing frontend dependencies...
cd ..\frontend
call npm install
REM Python agentic setup
echo π€ Setting up Python environment...
cd ..\backend\agentic
REM Create virtual environment
python -m venv venv
echo β
Virtual environment created!
echo.
echo β οΈ NEXT STEPS:
echo 1. Activate the virtual environment:
echo venv\Scripts\activate
echo.
echo 2. Install Python dependencies:
echo pip install -r requirements.txt
echo.
echo 3. Copy .env.example to .env and add your Google AI API key:
echo copy .env.example .env
echo REM Edit .env and add your API key
echo.
echo 4. Run the agentic workflow:
echo python main.py
echo.
echo π Setup complete! Check the README.md files for detailed instructions.
pause