-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathrun.sh
executable file
·458 lines (399 loc) · 13.6 KB
/
run.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
#!/bin/bash
# Colors for terminal output
RED='\033[0;31m'
GREEN='\033[0;32m'
YELLOW='\033[1;33m'
NC='\033[0m' # No Color
# Function to print colored messages
print_message() {
local color=$1
local message=$2
echo -e "${color}${message}${NC}"
}
# Prints if the last command was successful or not
check_status() {
if [ $? -eq 0 ]; then
print_message "$GREEN" "✓ Success: $1"
print_message "$GREEN" "--------------------------------"
else
print_message "$RED" "✗ Error: $1"
print_message "$RED" "--------------------------------"
exit 1
fi
}
# Checks if python is installed
check_python() {
print_message "$YELLOW" "Checking Python installation..."
if [[ "$OSTYPE" == "msys" || "$OSTYPE" == "cygwin" ]]; then
# Check for Python in Windows
if ! command -v python.exe &> /dev/null && ! command -v python3.exe &> /dev/null; then
print_message "$RED" "Python is not installed or not in PATH!"
print_message "$YELLOW" "Please install Python 3.x using one of these methods:"
echo "1. Download from official website: https://www.python.org/downloads/"
echo "2. Install from Microsoft Store"
echo "3. Use Windows Package Manager (if available):"
echo " winget install Python.Python.3.10"
echo
echo "Important: During installation:"
echo "- Check 'Add Python to PATH'"
echo "- Check 'Install pip'"
exit 1
fi
else
# Check for Python in Unix-like systems
if ! command -v python3 &> /dev/null; then
print_message "$RED" "Python is not installed!"
print_message "$YELLOW" "Please install Python 3.x using your package manager:"
echo "For Ubuntu/Debian:"
echo "sudo apt update && sudo apt install python3 python3-pip python3-venv"
echo
echo "For Fedora:"
echo "sudo dnf install python3 python3-pip"
echo
echo "For macOS:"
echo "brew install python3"
exit 1
fi
fi
# Check Python version
local python_cmd
if command -v python3 &> /dev/null; then
python_cmd="python3"
elif command -v python &> /dev/null; then
python_cmd="python"
else
print_message "$RED" "No Python command found!"
exit 1
fi
local version
version=$($python_cmd -c 'import sys; print(".".join(map(str, sys.version_info[:2])))')
print_message "$GREEN" "Found Python version $version"
}
# Checks if mysql is installed
check_mysql() {
print_message "$YELLOW" "Checking MySQL installation..."
if ! command -v mysql &> /dev/null; then
print_message "$RED" "MySQL is not installed!"
print_message "$YELLOW" "Please install MySQL using the Full Installation option, or manually."
exit 1
else
print_message "$GREEN" "MySQL is installed"
fi
}
# Function to install MySQL if it's not found
install_mysql() {
print_message "$YELLOW" "Checking if MySQL is installed..."
# Check if MySQL is already installed
if ! command -v mysql &> /dev/null; then
print_message "$RED" "MySQL is not installed. Attempting to install MySQL..."
if [[ "$OSTYPE" == "linux-gnu"* ]]; then
# For Ubuntu/Debian
if command -v apt-get &> /dev/null; then
sudo apt update && sudo apt install mysql-server mysql-client -y
# For Fedora
elif command -v dnf &> /dev/null; then
sudo dnf install mysql mysql-server -y
else
print_message "$YELLOW" "Could not determine Linux package manager. Please install MySQL manually."
print_message "$YELLOW" "Visit: https://dev.mysql.com/downloads/mysql/"
exit 1
fi
elif [[ "$OSTYPE" == "darwin"* ]]; then
# For macOS
if command -v brew &> /dev/null; then
brew install mysql
else
print_message "$RED" "Homebrew not found. Install Homebrew or MySQL manually."
print_message "$YELLOW" "Visit: https://dev.mysql.com/downloads/mysql/"
exit 1
fi
elif [[ "$OSTYPE" == "msys" || "$OSTYPE" == "cygwin" ]]; then
# For Windows
print_message "$RED" "Automatic installation of MySQL on Windows is unsupported."
print_message "$YELLOW" "Please install MySQL manually from: https://dev.mysql.com/downloads/installer/"
exit 1
else
print_message "$RED" "Unsupported OS. Please install MySQL manually."
print_message "$YELLOW" "Visit: https://dev.mysql.com/downloads/mysql/"
exit 1
fi
print_message "$GREEN" "MySQL installation completed."
# Start MySQL service if installed on Linux or macOS
if [[ "$OSTYPE" == "linux-gnu"* ]]; then
sudo systemctl start mysql
sudo systemctl enable mysql
elif [[ "$OSTYPE" == "darwin"* ]]; then
brew services start mysql
fi
else
print_message "$GREEN" "MySQL is already installed."
fi
}
# Function to prompt for user input with a default value
prompt_with_default() {
local prompt=$1
local default=$2
read -p "$prompt [$default]: " value
echo "${value:-$default}"
}
# Function to setup virtual environment
setup_venv() {
print_message "$YELLOW" "Setting up Python virtual environment..."
local python_cmd
if command -v python3 &> /dev/null; then
python_cmd="python3"
else
python_cmd="python"
fi
# Create virtual environment
$python_cmd -m venv .venv || {
print_message "$RED" "Failed to create virtual environment. Installing venv..."
if [[ "$OSTYPE" == "msys" || "$OSTYPE" == "cygwin" ]]; then
$python_cmd -m pip install virtualenv
$python_cmd -m virtualenv .venv
else
sudo apt-get install python3-venv -y
$python_cmd -m venv .venv
fi
}
# Activate virtual environment based on OS
if [[ "$OSTYPE" == "msys" || "$OSTYPE" == "cygwin" ]]; then
source .venv/Scripts/activate
else
source .venv/bin/activate
fi
check_status "Virtual environment creation"
}
# Function to install Python dependencies
install_python_deps() {
print_message "$YELLOW" "Installing Python dependencies..."
pip install --upgrade pip
pip install -r app/requirements.txt
check_status "Python dependencies installation"
}
# Function to setup pre-commit hooks
setup_precommit() {
print_message "$YELLOW" "Setting up pre-commit hooks..."
pre-commit install
check_status "Pre-commit hooks setup"
}
# Function to configure environment variables
configure_env() {
print_message "$YELLOW" "Configuring environment variables..."
if [ ! -f ".env" ]; then
cp configurations/environment .env
# Prompt for database configuration
DEV_PASSWORD=$(prompt_with_default "Enter development database password" "schub_dev_pwd")
TEST_PASSWORD=$(prompt_with_default "Enter test database password" "schub_test_pwd")
SECRET_KEY=$(openssl rand -hex 32)
HOST_NAME=$(prompt_with_default "Enter host" "127.0.0.1:8000")
# Update .env file
sed -i "s/{DEV_PASSWORD}/$DEV_PASSWORD/g" .env
sed -i "s/{TEST_PASSWORD}/$TEST_PASSWORD/g" .env
sed -i "s/{SECRET_KEY}/$SECRET_KEY/g" .env
sed -i "s/{HOST_NAME}/$HOST_NAME/g" .env
check_status "Environment configuration"
else
print_message "$YELLOW" ".env file already exists. Skipping configuration."
fi
}
# Function to setup MySQL databases
setup_mysql() {
print_message "$YELLOW" "Setting up MySQL databases..."
read -sp "Enter MySQL root password: " MYSQL_ROOT_PASSWORD
echo
# Setup development database
mysql -u root -p"$MYSQL_ROOT_PASSWORD" < data/setup_dev_db.sql
check_status "Development database setup"
# Setup test database
mysql -u root -p"$MYSQL_ROOT_PASSWORD" < data/setup_test_db.sql
check_status "Test database setup"
}
# Function to install Node.js dependencies
install_node_deps() {
print_message "$YELLOW" "Installing Node.js dependencies..."
cd schub
npm install
check_status "Node.js dependencies installation"
cd ..
}
# Function to generate and import data, fix dump generator for django app
generate_data() {
print_message "$YELLOW" "Generating and importing data..."
cd data/
python3 generate_dump.py
check_status "Data generation"
read -sp "Enter MySQL root password to import data: " MYSQL_ROOT_PASSWORD
echo
mysql -u root -p"$MYSQL_ROOT_PASSWORD" < dump.sql
check_status "Data import"
cd ..
}
# Function to reset development database
reset_dev_db() {
print_message "$RED" "Resetting development database..."
read -sp "Enter MySQL root password: " MYSQL_ROOT_PASSWORD
echo
# Drop and recreate development database using the sql script
mysql -u root -p"$MYSQL_ROOT_PASSWORD" < data/setup_dev_db.sql
check_status "Development database reset"
# Regenerate and import fresh data
cd data/
python3 generate_dump.py
mysql -u root -p"$MYSQL_ROOT_PASSWORD" < dump.sql
check_status "Development data import"
cd ..
}
# Function to reset test database
reset_test_db() {
print_message "$YELLOW" "Resetting test database..."
read -sp "Enter MySQL root password: " MYSQL_ROOT_PASSWORD
echo
mysql -u root -p"$MYSQL_ROOT_PASSWORD" < data/setup_test_db.sql
check_status "Test database reset"
}
# Sets up the applications, venv and npm
setup_apps() {
print_message "$YELLOW" "Setting up applications..."
check_python
check_mysql
git pull
check_status "Repository updated"
configure_env
pip install -r app/requirements.txt
check_status "Python dependencies up to date"
cd schub
npm install
check_status "React app dependencies up to date"
cd ..
}
# Function to start both apps using tmux
start_apps() {
print_message "$YELLOW" "Starting SCHub applications..."
# Check if tmux is installed
# if ! command -v tmux &> /dev/null; then
# print_message "$RED" "tmux is not installed!"
# print_message "$YELLOW" "Please run these commands manually to start the applications:"
# exit 1
# else
# print_message "$GREEN" "tmux is installed!"
# # Check the user's default shell
cd app
source .venv/bin/activate
python manage.py runserver &
cd ../schub
npm start &
cd ..
# fi
print_message "$GREEN" "Applications started successfully!"
exit 0
}
# Function to clean databases
database_operations() {
while true; do
echo
print_message "$GREEN" "Database Operations Menu:"
echo "1. Reset development database"
echo "2. Reset test database"
echo "3. Reset both databases"
echo "4. Return to main menu"
echo "5. Exit"
echo
read -p "Select an option (1-5): " db_choice
case $db_choice in
1)
reset_dev_db
;;
2)
reset_test_db
;;
3)
reset_dev_db
reset_test_db
;;
4)
return
;;
5)
print_message "$GREEN" "Goodbye!"
exit 0
;;
*)
print_message "$RED" "Invalid option"
;;
esac
done
}
# Main installation function
main_installation() {
print_message "$GREEN" "Starting SCHub installation..."
# Check Python installation first
check_python
# Check and install MySQL if necessary
install_mysql
# Clone repository if not already in SCHub directory
# if [[ ! -d ".git" ]]; then
# print_message "$YELLOW" "Cloning SCHub repository..."
# git clone https://github.com/Jesulayomy/SCHub.git
# cd SCHub
# check_status "Repository cloned"
# else
git pull
check_status "Repository updated"
# fi
# Execute installation steps
setup_venv
install_python_deps
setup_precommit
configure_env
setup_mysql
install_node_deps
generate_data
print_message "$GREEN" "Installation completed successfully!"
print_message "$YELLOW" "To start the application:"
echo "1. Activate virtual environment:"
if [[ "$OSTYPE" == "msys" || "$OSTYPE" == "cygwin" ]]; then
echo " source .venv/Scripts/activate"
else
echo " source .venv/bin/activate"
fi
echo "2. Start Flask server: python3 -m api.app"
echo "3. In another terminal, start React frontend: cd schub && npm start"
}
# Main menu function
main_menu() {
while true; do
echo
print_message "$GREEN" "SCHub Installation and Management Menu:"
echo "1. Run Apps"
echo "2. Setup applications"
echo "3. Clean Databases"
echo "4. Full installation"
echo "0. Exit"
echo
read -p "Select an option (1-3): " choice
case $choice in
1)
start_apps
;;
2)
setup_apps
;;
3)
database_operations
;;
4)
main_installation
;;
0)
print_message "$GREEN" "Goodbye!"
exit 0
;;
*)
print_message "$RED" "Invalid option"
;;
esac
done
}
# Execute main menu
main_menu