#!/usr/bin/env bash set -e whoami # Generate hashed passwords team_password=$(htpasswd -nbB "" "$TEAM_PASSWORD" | cut -d ":" -f 2 | tr -d "\n") argilla_password=$(htpasswd -nbB "" "$ARGILLA_PASSWORD" | cut -d ":" -f 2 | tr -d "\n") # Create users.yml file echo "Creating users schema" cat >"$HOME"/users.yml <