-
Notifications
You must be signed in to change notification settings - Fork 19
/
5-EvolutionAPI.sh
112 lines (102 loc) · 4.75 KB
/
5-EvolutionAPI.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
#!/bin/bash
# Ensure the script is run as root
if [ "$(id -u)" != "0" ]; then
echo "This script must be run as root" >&2
exit 1
fi
# Updating and installing dependencies
echo "Updating and installing Docker..."
sudo apt update && sudo apt upgrade -y
sudo apt-get remove docker docker-engine docker.io containerd runc -y
sudo apt-get update
sudo apt-get install ca-certificates curl gnupg lsb-release -y
sudo mkdir -p /etc/apt/keyrings
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg
echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
sudo apt-get update
sudo apt-get install docker-ce docker-ce-cli containerd.io docker-compose-plugin -y
# Configuring firewall rules
sudo ufw allow 8080/tcp
sudo ufw allow 80/tcp
sudo ufw allow 443/tcp
sudo ufw allow 3000/tcp
sudo ufw allow 6379/tcp
sudo ufw allow 5432/tcp
echo "Waiting for 5 seconds..."
sleep 5
# Setting up the Evolution API environment
echo "Cloning Evolution API repository and setting up the environment..."
git clone https://github.com/EvolutionAPI/evolution-api.git
cd evolution-api
sudo apt-get install -y git zip unzip nload snapd curl wget
# Install NVM, Node.js, and NPM
echo "Installing NVM and setting up Node.js environment..."
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash
# Source nvm script to make it available in the current session
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion"
# Install the latest version of Node.js and set it as the default version
nvm install node
nvm use node
nvm alias default node
# Proceed with the setup...
sleep 2
cp src/dev-env.yml src/env.yml
# Wait 3 seconds
echo "Waiting for 3 seconds..."
sleep 2
# 3. Configuration prompts
read -p "Enter your subdomain: " sub_domain
# MongoDB details (using defaults for simplicity, modify as needed)
read -p "MongoDB details (Press Enter to use defaults): "
read -p "Database name (Press Enter to use db_mongo): " db_mongo
read -p "Database user (Press Enter to use db_mongo_user): " db_mongo_user
read -p "Database password (Press Enter to use mongo_db_pass): " mongo_db_pass
# Server IP prompt
server_ip=$(hostname -I | awk '{print $1}')
echo "Current server IP is $server_ip. Is this correct? (y/n): "
read server_ip_correct
if [ "$server_ip_correct" != "y" ]; then
read -p "Enter the correct server IP: " server_ip
fi
read -p "Enter Redis password: " redis_pass
api_key="B6D711FCDE4D4FD5936544120E713976"
read -p "API Key is $api_key. Do you want to change it? (y/n): " change_api_key
if [ "$change_api_key" == "y" ]; then
read -p "Enter a new API Key (at least 12 letters): " api_key
fi
# Apply configurations to src/env.yml
echo "Applying configurations..."
sudo sed -i "s|URL: localhost|URL: http://$sub_domain|" src/env.yml
sudo sed -i "s|# - yourdomain.com|- \"$sub_domain\"|" src/env.yml
# Update server TYPE and PORT in config.yml
sudo sed -i "/SERVER:/,/URL:/s|TYPE: http|TYPE: https|" config.yml
sudo sed -i "/SERVER:/,/URL:/s|PORT: 8080 # 443|PORT: 443 # 443|" config.yml
sudo sed -i "s|/etc/letsencrypt/live/<domain>/privkey.pem|/etc/letsencrypt/live/$sub_domain/privkey.pem|" src/env.yml
sudo sed -i "s|/etc/letsencrypt/live/<domain>/fullchain.pem|/etc/letsencrypt/live/$sub_domain/fullchain.pem|" src/env.yml
sudo sed -i "s|mongodb://root:root@localhost:27017/?authSource=admin&readPreference=primary&ssl=false&directConnection=true|mongodb://$db_mongo_user:$mongo_db_pass@$server_ip:27017/$db_mongo?authSource=admin&readPreference=primary&ssl=false&directConnection=true|" src/env.yml
sudo sed -i "s|redis://localhost:6379|redis://$redis_pass@$server_ip:6379|" src/env.yml
sudo sed -i "s|KEY: B6D711FCDE4D4FD5936544120E713976|KEY: $api_key|" src/env.yml
# Wait 5 seconds before the final setup
echo "Waiting for 5 seconds..."
sleep 2
echo "Finalizing setup..."
# Kill processes on port 8080
sudo lsof -i :8080 | awk 'NR!=1 {print $2}' | xargs -r sudo kill -9
# Kill processes on port 443
sudo lsof -i :443 | awk 'NR!=1 {print $2}' | xargs -r sudo kill -9
sudo apt update && sudo apt -y upgrade
sudo systemctl reload nginx
nginx -t && systemctl restart nginx
# npm and build the application
echo "Waiting for 5 seconds..."
sleep 2
npm install
npm install -g typescript
curl -o src/whatsapp/services/whatsapp.baileys.service.ts https://raw.githubusercontent.com/drhema/evolution-api/main/src/whatsapp/services/whatsapp.baileys.service.ts
sleep 1
npm run build
tsc
sleep 1
echo "Setup completed. Navigate to the evolution-api directory to start your application. write cd evolution-api then write screen then npm run start:prod"