143 lines
		
	
	
		
			4.4 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			143 lines
		
	
	
		
			4.4 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/usr/bin/env bash
 | |
| 
 | |
| # Copyright (c) 2021-2025 tteck
 | |
| # Author: tteck (tteckster)
 | |
| # Co-Author: MickLesk (Canbiz)
 | |
| # License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
 | |
| # Source: https://linkwarden.app/
 | |
| 
 | |
| source /dev/stdin <<< "$FUNCTIONS_FILE_PATH"
 | |
| color
 | |
| verb_ip6
 | |
| catch_errors
 | |
| setting_up_container
 | |
| network_check
 | |
| update_os
 | |
| 
 | |
| msg_info "Installing Dependencies"
 | |
| $STD apt-get install -y \
 | |
|   curl \
 | |
|   sudo \
 | |
|   mc \
 | |
|   make \
 | |
|   git \
 | |
|   postgresql \
 | |
|   build-essential \
 | |
|   cargo \
 | |
|   gnupg
 | |
| msg_ok "Installed Dependencies"
 | |
| 
 | |
| msg_info "Setting up Node.js Repository"
 | |
| mkdir -p /etc/apt/keyrings
 | |
| curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg
 | |
| echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_22.x nodistro main" >/etc/apt/sources.list.d/nodesource.list
 | |
| msg_ok "Set up Node.js Repository"
 | |
| 
 | |
| msg_info "Installing Node.js/Yarn"
 | |
| $STD apt-get update
 | |
| $STD apt-get install -y nodejs
 | |
| $STD npm install -g yarn
 | |
| msg_ok "Installed Node.js/Yarn"
 | |
| 
 | |
| msg_info "Installing Rust"
 | |
| wget -qL https://sh.rustup.rs
 | |
| $STD bash index.html -y --profile minimal
 | |
| echo 'export PATH=~/.cargo/bin:$PATH' >>~/.bashrc
 | |
| export PATH=~/.cargo/bin:$PATH
 | |
| rm index.html
 | |
| $STD cargo install monolith
 | |
| msg_ok "Installed Rust"
 | |
| 
 | |
| msg_info "Setting up PostgreSQL DB"
 | |
| DB_NAME=linkwardendb
 | |
| DB_USER=linkwarden
 | |
| DB_PASS="$(openssl rand -base64 18 | tr -d '/' | cut -c1-13)"
 | |
| SECRET_KEY="$(head /dev/urandom | tr -dc A-Za-z0-9 | head -c 32)"
 | |
| $STD sudo -u postgres psql -c "CREATE ROLE $DB_USER WITH LOGIN PASSWORD '$DB_PASS';"
 | |
| $STD sudo -u postgres psql -c "CREATE DATABASE $DB_NAME WITH OWNER $DB_USER ENCODING 'UTF8' TEMPLATE template0;"
 | |
| $STD sudo -u postgres psql -c "ALTER ROLE $DB_USER SET client_encoding TO 'utf8';"
 | |
| $STD sudo -u postgres psql -c "ALTER ROLE $DB_USER SET default_transaction_isolation TO 'read committed';"
 | |
| $STD sudo -u postgres psql -c "ALTER ROLE $DB_USER SET timezone TO 'UTC';"
 | |
| {
 | |
|     echo "Linkwarden-Credentials"
 | |
|     echo "Linkwarden Database User: $DB_USER"
 | |
|     echo "Linkwarden Database Password: $DB_PASS"
 | |
|     echo "Linkwarden Database Name: $DB_NAME"
 | |
|     echo "Linkwarden Secret: $SECRET_KEY"
 | |
| } >> ~/linkwarden.creds
 | |
| msg_ok "Set up PostgreSQL DB"
 | |
| 
 | |
| read -r -p "Would you like to add Adminer? <y/N> " prompt
 | |
| if [[ "${prompt,,}" =~ ^(y|yes)$ ]]; then
 | |
|   msg_info "Installing Adminer"
 | |
|   $STD apt install -y adminer
 | |
|   $STD a2enconf adminer
 | |
|   systemctl reload apache2
 | |
|   IP=$(hostname -I | awk '{print $1}')
 | |
|   echo "" >>~/linkwarden.creds
 | |
|   echo -e "Adminer Interface: \e[32m$IP/adminer/\e[0m" >>~/linkwarden.creds
 | |
|   echo -e "Adminer System: \e[32mPostgreSQL\e[0m" >>~/linkwarden.creds
 | |
|   echo -e "Adminer Server: \e[32mlocalhost:5432\e[0m" >>~/linkwarden.creds
 | |
|   echo -e "Adminer Username: \e[32m$DB_USER\e[0m" >>~/linkwarden.creds
 | |
|   echo -e "Adminer Password: \e[32m$DB_PASS\e[0m" >>~/linkwarden.creds
 | |
|   echo -e "Adminer Database: \e[32m$DB_NAME\e[0m" >>~/linkwarden.creds
 | |
|   {
 | |
|     echo ""
 | |
|     echo "Adminer-Credentials"
 | |
|     echo "Adminer WebUI: $IP/adminer/"
 | |
|     echo "Adminer Database User: $DB_USER"
 | |
|     echo "Adminer Database Password: $DB_PASS"
 | |
|     echo "Adminer Database Name: $DB_NAME"
 | |
| } >> ~/linkwarden.creds
 | |
|   msg_ok "Installed Adminer"
 | |
| fi
 | |
| 
 | |
| msg_info "Installing Linkwarden (Patience)"
 | |
| cd /opt
 | |
| RELEASE=$(curl -s https://api.github.com/repos/linkwarden/linkwarden/releases/latest | grep "tag_name" | awk '{print substr($2, 2, length($2)-3) }')
 | |
| wget -q "https://github.com/linkwarden/linkwarden/archive/refs/tags/${RELEASE}.zip"
 | |
| unzip -q ${RELEASE}.zip
 | |
| mv linkwarden-${RELEASE:1} /opt/linkwarden
 | |
| cd /opt/linkwarden
 | |
| $STD yarn
 | |
| $STD npx playwright install-deps
 | |
| $STD yarn playwright install
 | |
| IP=$(hostname -I | awk '{print $1}')
 | |
| env_path="/opt/linkwarden/.env"
 | |
| echo " 
 | |
| NEXTAUTH_SECRET=${SECRET_KEY}
 | |
| NEXTAUTH_URL=http://${IP}:3000
 | |
| DATABASE_URL=postgresql://${DB_USER}:${DB_PASS}@localhost:5432/${DB_NAME}
 | |
| " >$env_path
 | |
| $STD yarn build
 | |
| $STD yarn prisma migrate deploy
 | |
| echo "${RELEASE}" >/opt/${APPLICATION}_version.txt
 | |
| msg_ok "Installed Linkwarden"
 | |
| 
 | |
| msg_info "Creating Service"
 | |
| cat <<EOF >/etc/systemd/system/linkwarden.service
 | |
| [Unit]
 | |
| Description=Linkwarden Service
 | |
| After=network.target
 | |
| 
 | |
| [Service]
 | |
| Type=exec
 | |
| Environment=PATH=$PATH
 | |
| WorkingDirectory=/opt/linkwarden
 | |
| ExecStart=/usr/bin/yarn start
 | |
| 
 | |
| [Install]
 | |
| WantedBy=multi-user.target
 | |
| EOF
 | |
| systemctl enable -q --now linkwarden.service
 | |
| msg_ok "Created Service"
 | |
| 
 | |
| motd_ssh
 | |
| customize
 | |
| 
 | |
| msg_info "Cleaning up"
 | |
| rm -rf /opt/${RELEASE}.zip
 | |
| $STD apt-get -y autoremove
 | |
| $STD apt-get -y autoclean
 | |
| msg_ok "Cleaned"
 | 
