-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstart.sh
65 lines (54 loc) · 1.49 KB
/
start.sh
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#!/bin/bash
echo "Starting Market Analysis Tool..."
# Check for Python installation
if ! command -v python3 &> /dev/null; then
echo "Python is not installed! Please install Python 3.8 or higher."
exit 1
fi
# Check for Node.js installation
if ! command -v node &> /dev/null; then
echo "Node.js is not installed! Please install Node.js 14 or higher."
exit 1
fi
# Check and install Python requirements
echo "Checking Python requirements..."
pip freeze > installed_requirements.txt
if ! cmp -s requirements.txt installed_requirements.txt; then
echo "Installing Python requirements..."
pip install -r requirements.txt
fi
rm installed_requirements.txt
# Install frontend dependencies if needed
cd frontend || exit
if [ ! -d "node_modules" ]; then
echo "Installing frontend dependencies..."
npm install
npm install recharts
fi
# Start both servers
echo "Starting servers..."
cd ..
(cd backend && python app.py) &
(cd frontend && npm start) &
# Store process IDs
echo $! > .server_pid
echo $! > .frontend_pid
echo "Application started! Please wait for the browser to open..."
# Trap Ctrl+C to clean up processes
cleanup() {
echo "Stopping servers..."
if [ -f .server_pid ]; then
kill $(cat .server_pid) 2>/dev/null
rm .server_pid
fi
if [ -f .frontend_pid ]; then
kill $(cat .frontend_pid) 2>/dev/null
rm .frontend_pid
fi
deactivate
exit 0
}
trap cleanup INT
# Wait for user input
echo "Press Ctrl+C to stop the application"
wait