mirror of
				https://github.com/community-scripts/ProxmoxVE.git
				synced 2025-11-04 10:22:50 +00:00 
			
		
		
		
	* Bump L to N-Scripts to Debian 13 (Trixie) * refactor * Add apt clean command to cleanup process * Add apt clean command to cleanup process --------- Co-authored-by: Tobias <96661824+CrazyWolf13@users.noreply.github.com> Co-authored-by: Slaviša Arežina <58952836+tremor021@users.noreply.github.com>
		
			
				
	
	
		
			97 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			97 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/usr/bin/env bash
 | 
						|
 | 
						|
# Copyright (c) 2021-2025 community-scripts ORG
 | 
						|
# Author: MickLesk (CanbiZ)
 | 
						|
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
 | 
						|
# Source: https://www.meilisearch.com/
 | 
						|
 | 
						|
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
 | 
						|
color
 | 
						|
verb_ip6
 | 
						|
catch_errors
 | 
						|
setting_up_container
 | 
						|
network_check
 | 
						|
update_os
 | 
						|
 | 
						|
fetch_and_deploy_gh_release "meilisearch" "meilisearch/meilisearch" "binary"
 | 
						|
 | 
						|
msg_info "Configuring ${APPLICATION}"
 | 
						|
curl -fsSL https://raw.githubusercontent.com/meilisearch/meilisearch/latest/config.toml -o /etc/meilisearch.toml
 | 
						|
MASTER_KEY=$(openssl rand -base64 12)
 | 
						|
LOCAL_IP="$(hostname -I | awk '{print $1}')"
 | 
						|
sed -i \
 | 
						|
  -e 's|^env =.*|env = "production"|' \
 | 
						|
  -e "s|^# master_key =.*|master_key = \"$MASTER_KEY\"|" \
 | 
						|
  -e 's|^db_path =.*|db_path = "/var/lib/meilisearch/data"|' \
 | 
						|
  -e 's|^dump_dir =.*|dump_dir = "/var/lib/meilisearch/dumps"|' \
 | 
						|
  -e 's|^snapshot_dir =.*|snapshot_dir = "/var/lib/meilisearch/snapshots"|' \
 | 
						|
  -e 's|^# no_analytics = true|no_analytics = true|' \
 | 
						|
  -e 's|^http_addr =.*|http_addr = "0.0.0.0:7700"|' \
 | 
						|
  /etc/meilisearch.toml
 | 
						|
msg_ok "Configured ${APPLICATION}"
 | 
						|
 | 
						|
read -r -p "${TAB3}Do you want add meilisearch-ui? [y/n]: " prompt
 | 
						|
if [[ ${prompt,,} =~ ^(y|yes)$ ]]; then
 | 
						|
  NODE_VERSION="22" NODE_MODULE="pnpm@latest" setup_nodejs
 | 
						|
  fetch_and_deploy_gh_release "meilisearch-ui" "riccox/meilisearch-ui" "tarball"
 | 
						|
 | 
						|
  msg_info "Configuring ${APPLICATION}-ui"
 | 
						|
  cd /opt/meilisearch-ui
 | 
						|
  sed -i 's|const hash = execSync("git rev-parse HEAD").toString().trim();|const hash = "unknown";|' /opt/meilisearch-ui/vite.config.ts
 | 
						|
  $STD pnpm install
 | 
						|
  cat <<EOF >/opt/meilisearch-ui/.env.local
 | 
						|
VITE_SINGLETON_MODE=true
 | 
						|
VITE_SINGLETON_HOST=http://${LOCAL_IP}:7700
 | 
						|
VITE_SINGLETON_API_KEY=${MASTER_KEY}
 | 
						|
EOF
 | 
						|
  msg_ok "Configured ${APPLICATION}-ui"
 | 
						|
fi
 | 
						|
 | 
						|
msg_info "Creating service"
 | 
						|
cat <<EOF >/etc/systemd/system/meilisearch.service
 | 
						|
[Unit]
 | 
						|
Description=Meilisearch
 | 
						|
After=network.target
 | 
						|
 | 
						|
[Service]
 | 
						|
ExecStart=/usr/bin/meilisearch --config-file-path /etc/meilisearch.toml
 | 
						|
Restart=always
 | 
						|
 | 
						|
[Install]
 | 
						|
WantedBy=multi-user.target
 | 
						|
EOF
 | 
						|
systemctl enable -q --now meilisearch
 | 
						|
 | 
						|
if [[ ${prompt,,} =~ ^(y|yes)$ ]]; then
 | 
						|
  cat <<EOF >/etc/systemd/system/meilisearch-ui.service
 | 
						|
[Unit]
 | 
						|
Description=Meilisearch UI Service
 | 
						|
After=network.target meilisearch.service
 | 
						|
Requires=meilisearch.service
 | 
						|
 | 
						|
[Service]
 | 
						|
User=root
 | 
						|
WorkingDirectory=/opt/meilisearch-ui
 | 
						|
ExecStart=/usr/bin/pnpm start
 | 
						|
Restart=always
 | 
						|
RestartSec=5
 | 
						|
StandardOutput=syslog
 | 
						|
StandardError=syslog
 | 
						|
SyslogIdentifier=meilisearch-ui
 | 
						|
 | 
						|
[Install]
 | 
						|
WantedBy=multi-user.target
 | 
						|
EOF
 | 
						|
  systemctl enable -q --now meilisearch-ui
 | 
						|
fi
 | 
						|
msg_ok "Service created"
 | 
						|
 | 
						|
motd_ssh
 | 
						|
customize
 | 
						|
 | 
						|
msg_info "Cleaning up"
 | 
						|
$STD apt -y autoremove
 | 
						|
$STD apt -y autoclean
 | 
						|
$STD apt -y clean
 | 
						|
msg_ok "Cleaned"
 |