-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.bat
More file actions
37 lines (33 loc) · 834 Bytes
/
Copy pathsetup.bat
File metadata and controls
37 lines (33 loc) · 834 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
@echo off
echo ===================================
echo NeuroSonic Project Setup
echo ===================================
echo.
echo Creating Python virtual environment...
python -m venv venv
call venv\Scripts\activate
echo Installing Python dependencies...
pip install -r requirements.txt
echo.
echo Setting up frontend...
cd src\frontend
echo Installing Node.js dependencies...
npm install
echo.
echo ===================================
echo Setup complete!
echo.
echo To run the application:
echo.
echo 1. Start the backend server:
echo call venv\Scripts\activate
echo cd src\backend
echo python app.py
echo.
echo 2. In a new terminal, start the frontend:
echo cd src\frontend
echo npm start
echo.
echo 3. Open your browser and navigate to:
echo http://localhost:3000
echo ===================================