We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c0d8b71 commit 5bdbf88Copy full SHA for 5bdbf88
1 file changed
start.sh
@@ -1,14 +1,14 @@
1
#!/bin/bash
2
3
-# Start the Flask backend server in the background
+# Start the Gunicorn backend server in the background
4
echo "Starting backend server..."
5
-cd backend
6
-python topic_processor.py &
+cd backend/app
+gunicorn -b 127.0.0.1:5002 main:app &
7
8
# Wait a moment for the backend to start
9
sleep 2
10
11
# Start the frontend development server
12
echo "Starting frontend server..."
13
-cd ..
+cd ../..
14
npm start
0 commit comments