config en cours, bloque sur composer et son utilisation du proxy

This commit is contained in:
2024-06-12 14:35:18 +02:00
commit c2ddfbcd22
137 changed files with 12768 additions and 0 deletions

13
scripts/create-ngrok.sh Normal file
View File

@@ -0,0 +1,13 @@
#!/usr/bin/env bash
PATH_NGROK="/home/vagrant/.config/ngrok"
PATH_CONFIG="${PATH_NGROK}/ngrok.yml"
# Only create a ngrok config file if there isn't one already there.
if [ ! -f $PATH_CONFIG ]; then
mkdir -p "$PATH_NGROK"
cat > "$PATH_CONFIG" << EOF
version: 2
web_addr: $1:4040
EOF
fi