Skip to content

Commit 5bdbf88

Browse files
committed
update start.sh
1 parent c0d8b71 commit 5bdbf88

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

start.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
#!/bin/bash
22

3-
# Start the Flask backend server in the background
3+
# Start the Gunicorn backend server in the background
44
echo "Starting backend server..."
5-
cd backend
6-
python topic_processor.py &
5+
cd backend/app
6+
gunicorn -b 127.0.0.1:5002 main:app &
77

88
# Wait a moment for the backend to start
99
sleep 2
1010

1111
# Start the frontend development server
1212
echo "Starting frontend server..."
13-
cd ..
13+
cd ../..
1414
npm start

0 commit comments

Comments
 (0)