refactor: remove tjaf dependency; add local TJA parser
This commit is contained in:
66
tools/setup.sh
Normal file
66
tools/setup.sh
Normal file
@@ -0,0 +1,66 @@
|
||||
#!/bin/bash
|
||||
set -euo pipefail
|
||||
|
||||
sudo apt update
|
||||
sudo apt install -y git python3-pip python3-virtualenv python3-venv nginx ffmpeg redis supervisor
|
||||
|
||||
if [[ -r /etc/os-release ]]; then
|
||||
. /etc/os-release
|
||||
if [[ $ID = ubuntu ]]; then
|
||||
# MongoDB supports only LTS and has not released package for Ubuntu 22.04 LTS yet
|
||||
case $VERSION_CODENAME in
|
||||
impish|kinetic|jammy)
|
||||
VERSION_CODENAME=focal ;;
|
||||
esac
|
||||
REPO="https://repo.mongodb.org/apt/ubuntu $VERSION_CODENAME/mongodb-org/5.0 multiverse"
|
||||
elif [[ $ID = debian ]]; then
|
||||
# MongoDB does not provide packages for Debian 11 yet
|
||||
case $VERSION_CODENAME in
|
||||
bullseye|bookworm|sid)
|
||||
VERSION_CODENAME=buster ;;
|
||||
esac
|
||||
REPO="https://repo.mongodb.org/apt/debian $VERSION_CODENAME/mongodb-org/5.0 main"
|
||||
else
|
||||
echo "Unsupported distribution $ID"
|
||||
exit 1
|
||||
fi
|
||||
else
|
||||
echo "Not running a distribution with /etc/os-release available"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
wget -qO - https://www.mongodb.org/static/pgp/server-5.0.asc | sudo tee /etc/apt/trusted.gpg.d/mongodb-server-5.0.asc
|
||||
echo "deb [ arch=amd64,arm64 ] $REPO" | sudo tee /etc/apt/sources.list.d/mongodb-org-5.0.list
|
||||
|
||||
sudo apt update
|
||||
sudo apt install -y mongodb-org
|
||||
|
||||
sudo mkdir -p /srv/taiko-web
|
||||
sudo chown $USER /srv/taiko-web
|
||||
git clone https://github.com/bui/taiko-web.git /srv/taiko-web
|
||||
|
||||
cd /srv/taiko-web
|
||||
tools/get_version.sh
|
||||
cp tools/hooks/* .git/hooks/
|
||||
cp config.example.py config.py
|
||||
sudo cp tools/nginx.conf /etc/nginx/conf.d/taiko-web.conf
|
||||
|
||||
sudo sed -i 's/^\(\s\{0,\}\)\(include \/etc\/nginx\/sites-enabled\/\*;\)$/\1#\2/g' /etc/nginx/nginx.conf
|
||||
sudo sed -i 's/}/ application\/wasm wasm;\n}/g' /etc/nginx/mime.types
|
||||
sudo service nginx restart
|
||||
|
||||
python3 -m venv .venv
|
||||
.venv/bin/pip install --upgrade pip wheel setuptools
|
||||
.venv/bin/pip install -r requirements.txt
|
||||
|
||||
sudo mkdir -p /var/log/taiko-web
|
||||
sudo cp tools/supervisor.conf /etc/supervisor/conf.d/taiko-web.conf
|
||||
sudo service supervisor restart
|
||||
|
||||
sudo systemctl enable mongod.service
|
||||
sudo service mongod start
|
||||
|
||||
IP=$(dig +short txt ch whoami.cloudflare @1.0.0.1 | tr -d '"')
|
||||
echo
|
||||
echo "Setup complete! You should be able to access your taiko-web instance at http://$IP"
|
||||
echo
|
||||
Reference in New Issue
Block a user