This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
import sys | |
import subprocess | |
import platform | |
import qrcode | |
from qrcode.constants import ERROR_CORRECT_L | |
import re | |
import getpass | |
def get_current_wifi_macos(): |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
x-postgres-env: &postgres-env | |
POSTGRES_USER: $SERVICE_USER_POSTGRES | |
POSTGRES_PASSWORD: $SERVICE_PASSWORD_POSTGRES | |
POSTGRES_DB: "${POSTGRES_DB:-trigger}" | |
POSTGRES_HOST: postgres | |
x-webapp-env: &webapp-env | |
LOGIN_ORIGIN: $SERVICE_FQDN_WEBAPP | |
APP_ORIGIN: $SERVICE_FQDN_WEBAPP | |
DEV_OTEL_EXPORTER_OTLP_ENDPOINT: "${SERVICE_FQDN_WEBAPP}/otel" |