Update setup.sh

This commit is contained in:
Nick Sweeting 2024-02-18 05:32:20 -08:00 committed by GitHub
parent 0b8ff4c84c
commit 9373a2853e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -165,7 +165,7 @@ if ! (python3 --version && python3 -m pip --version && python3 -m django --versi
exit 1 exit 1
fi fi
if ! (python3 -m django --version && (: | python3 -m archivebox version --quiet)); then if ! (python3 -m django --version && which -a archivebox && (: | archivebox version --quiet)); then
echo "[X] Django and ArchiveBox were not found after installing!" echo "[X] Django and ArchiveBox were not found after installing!"
echo " Check to see if a previous step failed." echo " Check to see if a previous step failed."
echo echo
@ -191,7 +191,7 @@ if [ -f "./index.sqlite3" ]; then
fi fi
cd ./data cd ./data
: | python3 -m archivebox init --setup || true # pipe in empty command to make sure stdin is closed : | python3 -m archivebox init --setup || true # pipe in empty command to make sure stdin is closed
: | python3 -m archivebox version
echo echo
echo "[+] Starting ArchiveBox server using: nohup archivebox server &..." echo "[+] Starting ArchiveBox server using: nohup archivebox server &..."
nohup python3 -m archivebox server 0.0.0.0:8000 > ./logs/server.log 2>&1 & nohup python3 -m archivebox server 0.0.0.0:8000 > ./logs/server.log 2>&1 &