2021-04-24 02:11:04 -04:00
|
|
|
#!/usr/bin/env sh
|
2021-04-23 23:49:44 -04:00
|
|
|
# ArchiveBox Setup Script: https://github.com/ArchiveBox/ArchiveBox
|
2021-04-24 03:43:15 -04:00
|
|
|
# Supported Platforms: Ubuntu/Debian/FreeBSD/macOS
|
2021-04-23 23:49:44 -04:00
|
|
|
# Usage:
|
2021-04-24 02:11:04 -04:00
|
|
|
# curl 'https://raw.githubusercontent.com/ArchiveBox/ArchiveBox/dev/bin/setup.sh' | sh
|
|
|
|
|
|
|
|
clear
|
2018-06-10 21:58:48 -04:00
|
|
|
|
2021-04-24 02:27:30 -04:00
|
|
|
if [ $(id -u) -eq 0 ]; then
|
2021-04-24 02:26:25 -04:00
|
|
|
echo ""
|
|
|
|
echo "[X] You cannot run this script as root. You must run it as a non-root user with sudo ability."
|
2021-04-24 03:09:18 -04:00
|
|
|
echo " Create a new non-privileged user 'archivebox' if necessary."
|
|
|
|
echo " adduser archivebox && usermod -a archivebox -G sudo && su archivebox"
|
|
|
|
echo " https://www.digitalocean.com/community/tutorials/how-to-create-a-new-sudo-enabled-user-on-ubuntu-20-04-quickstart"
|
|
|
|
echo " https://www.vultr.com/docs/create-a-sudo-user-on-freebsd"
|
2021-04-24 02:40:45 -04:00
|
|
|
echo " Then re-run this script as the non-root user."
|
2021-04-24 02:56:48 -04:00
|
|
|
echo ""
|
2021-04-24 02:30:31 -04:00
|
|
|
exit 2
|
2021-04-24 02:26:25 -04:00
|
|
|
fi
|
|
|
|
|
2021-04-24 01:13:59 -04:00
|
|
|
if (which docker-compose > /dev/null && docker pull archivebox/archivebox:latest); then
|
2021-04-24 00:06:07 -04:00
|
|
|
echo "[+] Initializing an ArchiveBox data folder at ~/archivebox/data using Docker Compose..."
|
|
|
|
mkdir -p ~/archivebox
|
|
|
|
cd ~/archivebox
|
|
|
|
mkdir -p data
|
2021-04-24 00:08:17 -04:00
|
|
|
if [ -f "./index.sqlite3" ]; then
|
2021-04-24 00:06:07 -04:00
|
|
|
mv ~/archivebox/* ~/archivebox/data/
|
|
|
|
fi
|
|
|
|
curl -O 'https://raw.githubusercontent.com/ArchiveBox/ArchiveBox/master/docker-compose.yml'
|
|
|
|
docker-compose run --rm archivebox init --setup
|
2021-04-24 00:55:51 -04:00
|
|
|
echo
|
|
|
|
echo "[+] Starting ArchiveBox server using: docker-compose up -d..."
|
2021-04-24 00:06:07 -04:00
|
|
|
docker-compose up -d
|
|
|
|
sleep 7
|
|
|
|
open http://127.0.0.1:8000 || true
|
2021-04-24 00:55:51 -04:00
|
|
|
echo
|
2021-04-24 00:23:14 -04:00
|
|
|
echo "[√] Server started on http://0.0.0.0:8000 and data directory initialized in ~/archivebox/data. Usage:"
|
|
|
|
echo " cd ~/archivebox"
|
|
|
|
echo " docker-compose ps"
|
|
|
|
echo " docker-compose down"
|
|
|
|
echo " docker-compose pull"
|
|
|
|
echo " docker-compose up"
|
2021-04-24 01:13:59 -04:00
|
|
|
echo " docker-compose run archivebox manage createsuperuser"
|
2021-04-24 00:23:14 -04:00
|
|
|
echo " docker-compose run archivebox add 'https://example.com'"
|
|
|
|
echo " docker-compose run archivebox list"
|
2021-04-24 01:13:59 -04:00
|
|
|
echo " docker-compose run archivebox help"
|
2021-04-24 00:06:07 -04:00
|
|
|
exit 0
|
2021-04-24 01:13:59 -04:00
|
|
|
elif (which docker > /dev/null && docker pull archivebox/archivebox:latest); then
|
2021-04-23 23:56:55 -04:00
|
|
|
echo "[+] Initializing an ArchiveBox data folder at ~/archivebox using Docker..."
|
|
|
|
mkdir -p ~/archivebox
|
|
|
|
cd ~/archivebox
|
2021-04-24 00:08:17 -04:00
|
|
|
if [ -f "./data/index.sqlite3" ]; then
|
2021-04-24 00:06:07 -04:00
|
|
|
cd ./data
|
|
|
|
fi
|
2021-04-24 01:13:59 -04:00
|
|
|
docker run -v "$PWD":/data -it --rm archivebox/archivebox:latest init --setup
|
2021-04-24 00:55:51 -04:00
|
|
|
echo
|
|
|
|
echo "[+] Starting ArchiveBox server using: docker run -d archivebox/archivebox..."
|
2021-04-24 01:13:59 -04:00
|
|
|
docker run -v "$PWD":/data -it -d -p 8000:8000 --name=archivebox archivebox/archivebox:latest
|
2021-04-24 00:06:07 -04:00
|
|
|
sleep 7
|
|
|
|
open http://127.0.0.1:8000 || true
|
2021-04-24 00:55:51 -04:00
|
|
|
echo
|
2021-04-24 00:23:14 -04:00
|
|
|
echo "[√] Server started on http://0.0.0.0:8000 and data directory initialized in ~/archivebox. Usage:"
|
|
|
|
echo " cd ~/archivebox"
|
|
|
|
echo " docker ps --filter name=archivebox"
|
|
|
|
echo " docker kill archivebox"
|
|
|
|
echo " docker pull archivebox/archivebox"
|
|
|
|
echo " docker run -v $PWD:/data -d -p 8000:8000 --name=archivebox archivebox/archivebox"
|
2021-04-24 01:13:59 -04:00
|
|
|
echo " docker run -v $PWD:/data -it archivebox/archivebox manage createsuperuser"
|
2021-04-24 00:23:14 -04:00
|
|
|
echo " docker run -v $PWD:/data -it archivebox/archivebox add 'https://example.com'"
|
|
|
|
echo " docker run -v $PWD:/data -it archivebox/archivebox list"
|
2021-04-24 01:13:59 -04:00
|
|
|
echo " docker run -v $PWD:/data -it archivebox/archivebox help"
|
2021-04-23 23:56:55 -04:00
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
2021-04-23 23:43:41 -04:00
|
|
|
echo ""
|
2021-04-24 01:02:12 -04:00
|
|
|
echo "[!] It's highly recommended to use ArchiveBox with Docker, but Docker wasn't found."
|
|
|
|
echo ""
|
|
|
|
echo " ⚠️ If you want to use Docker, press [Ctrl-C] to cancel now. ⚠️"
|
|
|
|
echo " Get Docker: https://docs.docker.com/get-docker/"
|
2021-04-24 02:40:45 -04:00
|
|
|
echo " After you've installed Docker, run this script again."
|
2021-04-24 00:50:05 -04:00
|
|
|
echo ""
|
2021-04-24 07:08:56 -04:00
|
|
|
echo "Otherwise, install will continue with apt/brew/pip in 12s... (press [Ctrl+C] to cancel)"
|
|
|
|
echo ""
|
|
|
|
sleep 12 || exit 1
|
|
|
|
echo "Proceeding with system package manager..."
|
2021-04-24 01:02:12 -04:00
|
|
|
echo ""
|
2021-04-24 02:09:53 -04:00
|
|
|
|
2019-03-12 17:49:40 -04:00
|
|
|
echo "[i] ArchiveBox Setup Script 📦"
|
2018-06-10 21:58:48 -04:00
|
|
|
echo ""
|
2021-04-23 23:43:41 -04:00
|
|
|
echo " This is a helper script which installs the ArchiveBox dependencies on your system using brew/apt/pip3."
|
2021-04-24 00:55:51 -04:00
|
|
|
echo " You may be prompted for a sudo password in order to install the following:"
|
2019-03-12 17:49:40 -04:00
|
|
|
echo ""
|
2021-04-24 02:09:53 -04:00
|
|
|
echo " - archivebox"
|
|
|
|
echo " - python3, pip, nodejs, npm (languages used by ArchiveBox, and its extractor modules)"
|
2021-04-23 23:43:41 -04:00
|
|
|
echo " - curl, wget, git, youtube-dl (used for extracting title, favicon, git, media, and more)"
|
|
|
|
echo " - chromium (skips this if any Chrome/Chromium version is already installed)"
|
|
|
|
echo ""
|
|
|
|
echo " If you'd rather install these manually as-needed, you can find detailed documentation here:"
|
2020-11-23 02:04:39 -05:00
|
|
|
echo " https://github.com/ArchiveBox/ArchiveBox/wiki/Install"
|
2018-06-10 21:58:48 -04:00
|
|
|
echo ""
|
2021-04-24 07:08:56 -04:00
|
|
|
echo "Continuing in 12s... (press [Ctrl+C] to cancel)"
|
2021-04-24 02:09:53 -04:00
|
|
|
echo ""
|
2021-04-24 07:08:56 -04:00
|
|
|
sleep 12 || exit 1
|
|
|
|
echo "Proceeding to install dependencies..."
|
2018-06-10 21:58:48 -04:00
|
|
|
echo ""
|
|
|
|
|
|
|
|
# On Linux:
|
|
|
|
if which apt-get > /dev/null; then
|
2021-04-24 00:55:51 -04:00
|
|
|
echo "[+] Adding ArchiveBox apt repo and signing key to sources..."
|
2021-04-23 23:43:41 -04:00
|
|
|
if ! (sudo apt install -y software-properties-common && sudo add-apt-repository -u ppa:archivebox/archivebox); then
|
|
|
|
echo "deb http://ppa.launchpad.net/archivebox/archivebox/ubuntu focal main" | sudo tee /etc/apt/sources.list.d/archivebox.list
|
|
|
|
echo "deb-src http://ppa.launchpad.net/archivebox/archivebox/ubuntu focal main" | sudo tee -a /etc/apt/sources.list.d/archivebox.list
|
|
|
|
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys C258F79DCC02E369
|
|
|
|
sudo apt-get update -qq
|
2018-06-10 21:58:48 -04:00
|
|
|
fi
|
2021-04-24 00:55:51 -04:00
|
|
|
echo
|
2021-04-24 07:08:56 -04:00
|
|
|
echo "[+] Installing ArchiveBox system dependencies using apt..."
|
2021-04-24 03:21:22 -04:00
|
|
|
sudo apt-get install -y git python3 python3-pip python3-distutils wget curl youtube-dl ffmpeg git nodejs npm ripgrep
|
2021-04-24 07:08:56 -04:00
|
|
|
sudo apt-get install -y libgtk2.0-0 libgtk-3-0 libnotify-dev libgconf-2-4 libnss3 libxss1 libasound2 libxtst6 xauth xvfb libgbm-dev || sudo apt-get install -y chromium || sudo apt-get install -y chromium-browser || true
|
2021-04-23 23:43:41 -04:00
|
|
|
sudo apt-get install -y archivebox
|
|
|
|
sudo apt-get --only-upgrade install -y archivebox
|
2021-04-24 07:08:56 -04:00
|
|
|
echo ""
|
2022-05-10 00:58:30 -04:00
|
|
|
echo "[+] Installing ArchiveBox python dependencies using pip3..."
|
|
|
|
sudo python3 -m pip install --upgrade --ignore-installed archivebox
|
2018-06-10 21:58:48 -04:00
|
|
|
# On Mac:
|
2021-04-23 23:43:41 -04:00
|
|
|
elif which brew > /dev/null; then
|
2021-04-24 07:08:56 -04:00
|
|
|
echo "[+] Installing ArchiveBox system dependencies using brew..."
|
2021-04-23 23:43:41 -04:00
|
|
|
brew tap archivebox/archivebox
|
|
|
|
brew update
|
|
|
|
brew install --fetch-HEAD -f archivebox
|
2021-04-24 07:08:56 -04:00
|
|
|
echo ""
|
2022-05-10 00:58:30 -04:00
|
|
|
echo "[+] Installing ArchiveBox python dependencies using pip3..."
|
2021-04-24 07:08:56 -04:00
|
|
|
python3 -m pip install --upgrade --ignore-installed archivebox
|
2021-04-24 02:26:25 -04:00
|
|
|
elif which pkg > /dev/null; then
|
2022-05-10 00:58:30 -04:00
|
|
|
echo "[+] Installing ArchiveBox system dependencies using pkg and pip37 (python3.7)..."
|
2021-04-24 03:21:22 -04:00
|
|
|
sudo pkg install -y python37 py37-pip py37-sqlite3 node npm wget curl youtube_dl ffmpeg git ripgrep
|
|
|
|
sudo pkg install -y chromium
|
2021-04-24 07:08:56 -04:00
|
|
|
echo ""
|
2022-05-10 00:58:30 -04:00
|
|
|
echo "[+] Installing ArchiveBox python dependencies using pip37..."
|
|
|
|
sudo python3 -m pip install --upgrade --ignore-installed archivebox
|
2018-06-10 21:58:48 -04:00
|
|
|
else
|
2021-04-24 02:54:18 -04:00
|
|
|
echo "[!] Warning: Could not find aptitude/homebrew/pkg! May not be able to install all dependencies automatically."
|
2018-06-10 21:58:48 -04:00
|
|
|
echo ""
|
|
|
|
echo " If you're on macOS, make sure you have homebrew installed: https://brew.sh/"
|
2021-04-24 02:54:18 -04:00
|
|
|
echo " If you're on Linux, only Ubuntu/Debian/BSD systems are officially supported with this script."
|
2021-04-24 02:09:53 -04:00
|
|
|
echo " If you're on Windows, this script is not officially supported (Docker is recommeded instead)."
|
2018-06-10 21:58:48 -04:00
|
|
|
echo ""
|
2021-04-23 23:43:41 -04:00
|
|
|
echo "See the README.md for Manual Setup & Troubleshooting instructions if you you're unable to run ArchiveBox after this script completes."
|
2018-06-10 21:58:48 -04:00
|
|
|
fi
|
|
|
|
|
2021-04-24 02:09:53 -04:00
|
|
|
echo ""
|
|
|
|
|
2021-04-24 07:08:56 -04:00
|
|
|
if ! (python3 --version && python3 -m pip --version && python3 -m django --version); then
|
2021-04-24 02:40:45 -04:00
|
|
|
echo "[X] Python 3 pip was not found on your system!"
|
|
|
|
echo " You must first install Python >= 3.7 (and pip3):"
|
|
|
|
echo " https://www.python.org/downloads/"
|
|
|
|
echo " https://wiki.python.org/moin/BeginnersGuide/Download"
|
|
|
|
echo " After installing, run this script again."
|
2021-04-24 02:09:53 -04:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2021-04-24 07:08:56 -04:00
|
|
|
if ! (python3 -m django --version && python3 -m archivebox version --quiet); then
|
|
|
|
echo "[X] Django and ArchiveBox were not found after installing!"
|
|
|
|
echo " Check to see if a previous step failed."
|
|
|
|
echo ""
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2021-04-24 02:54:18 -04:00
|
|
|
# echo ""
|
|
|
|
# echo "[+] Upgrading npm and pip..."
|
|
|
|
# sudo npm i -g npm || true
|
|
|
|
# sudo python3 -m pip install --upgrade pip setuptools || true
|
2021-01-22 13:41:16 -05:00
|
|
|
|
2021-04-24 00:55:51 -04:00
|
|
|
echo
|
2021-04-23 23:43:41 -04:00
|
|
|
echo "[+] Initializing ArchiveBox data folder at ~/archivebox..."
|
|
|
|
mkdir -p ~/archivebox
|
|
|
|
cd ~/archivebox
|
2021-04-24 00:08:17 -04:00
|
|
|
if [ -f "./data/index.sqlite3" ]; then
|
2021-04-24 00:06:07 -04:00
|
|
|
cd ./data
|
|
|
|
fi
|
2021-04-24 02:54:18 -04:00
|
|
|
: | python3 -m archivebox init --setup || true # pipe in empty command to make sure stdin is closed
|
2021-04-24 00:55:51 -04:00
|
|
|
|
|
|
|
echo
|
|
|
|
echo "[+] Starting ArchiveBox server using: nohup archivebox server &..."
|
2021-04-24 02:54:18 -04:00
|
|
|
nohup python3 -m archivebox server 0.0.0.0:8000 > ./logs/server.log 2>&1 &
|
2021-04-24 00:23:14 -04:00
|
|
|
sleep 7
|
2021-04-24 07:08:56 -04:00
|
|
|
which open > /dev/null && open http://127.0.0.1:8000 || true
|
2021-04-24 00:55:51 -04:00
|
|
|
|
|
|
|
echo
|
2021-04-24 00:23:14 -04:00
|
|
|
echo "[√] Server started on http://0.0.0.0:8000 and data directory initialized in ~/archivebox. Usage:"
|
|
|
|
echo " cd ~/archivebox"
|
|
|
|
echo " ps aux | grep archivebox"
|
2021-04-24 01:13:59 -04:00
|
|
|
echo " pkill -f archivebox"
|
2021-07-21 06:24:31 -04:00
|
|
|
echo " pip3 install --upgrade archivebox"
|
2021-04-24 00:23:14 -04:00
|
|
|
echo " archivebox server --quick-init 0.0.0.0:8000"
|
2021-04-24 01:13:59 -04:00
|
|
|
echo " archivebox manage createsuperuser"
|
2021-04-24 00:23:14 -04:00
|
|
|
echo " archivebox add 'https://example.com'"
|
|
|
|
echo " archivebox list"
|
2021-04-24 01:13:59 -04:00
|
|
|
echo " archivebox help"
|