-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.bat
More file actions
33 lines (28 loc) · 770 Bytes
/
Copy pathsetup.bat
File metadata and controls
33 lines (28 loc) · 770 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
@echo off
echo ========================================
echo Resume Analyzer - Setup Script
echo ========================================
echo.
echo Installing Python dependencies...
pip install -r requirements.txt
echo.
echo Running Django migrations...
python manage.py makemigrations
python manage.py migrate
echo.
echo Creating superuser (optional)...
python manage.py createsuperuser
echo.
echo Installing Node.js dependencies...
call npm install
echo.
echo ========================================
echo Setup Complete!
echo ========================================
echo.
echo Next steps:
echo 1. Make sure Ollama is running with qwen3:4b model
echo 2. Run start-backend.bat to start Django server
echo 3. Run start-frontend.bat to start React app
echo.
pause