Restore https:// now that git.pic.ngo has a TLS certificate
Unit Tests / test (push) Failing after 15m59s

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-11 04:33:51 -04:00
parent 0a24d20bbc
commit 5dab6377bc
2 changed files with 4 additions and 4 deletions
+3 -3
View File
@@ -17,13 +17,13 @@ The installer handles all software dependencies (git, docker, make, etc.) automa
## Option A — One-line installer (recommended) ## Option A — One-line installer (recommended)
```bash ```bash
curl -fsSL http://install.pic.ngo | sudo bash curl -fsSL https://install.pic.ngo | sudo bash
``` ```
Always review the script before running it: Always review the script before running it:
```bash ```bash
curl -fsSL http://install.pic.ngo | less curl -fsSL https://install.pic.ngo | less
``` ```
The installer: The installer:
@@ -47,7 +47,7 @@ http://<host-ip>:8081/setup
Use this if you want to control where PIC is installed, or if you are installing on a machine that already has Docker. Use this if you want to control where PIC is installed, or if you are installing on a machine that already has Docker.
```bash ```bash
git clone http://git.pic.ngo/roof/pic.git pic git clone https://git.pic.ngo/roof/pic.git pic
cd pic cd pic
sudo make install sudo make install
make start-core make start-core
+1 -1
View File
@@ -36,7 +36,7 @@ set -euo pipefail
# Configuration # Configuration
# --------------------------------------------------------------------------- # ---------------------------------------------------------------------------
PIC_DIR="${PIC_DIR:-/opt/pic}" PIC_DIR="${PIC_DIR:-/opt/pic}"
PIC_REPO="${PIC_REPO:-http://git.pic.ngo/roof/pic.git}" PIC_REPO="${PIC_REPO:-https://git.pic.ngo/roof/pic.git}"
PIC_USER="${PIC_USER:-pic}" PIC_USER="${PIC_USER:-pic}"
API_HEALTH_URL="http://127.0.0.1:3000/health" API_HEALTH_URL="http://127.0.0.1:3000/health"
API_HEALTH_TIMEOUT=60 API_HEALTH_TIMEOUT=60