mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 05:00:19 -05:00
Updated dev container to give the option of installing the Stripe CLI (#5105)
This commit is contained in:
parent
b580d7c022
commit
c9aa61b0cf
@ -70,6 +70,22 @@ Press <Enter> to continue."
|
|||||||
sleep 5 # wait for DB container to start
|
sleep 5 # wait for DB container to start
|
||||||
dotnet run --project ./util/MsSqlMigratorUtility "$SQL_CONNECTION_STRING"
|
dotnet run --project ./util/MsSqlMigratorUtility "$SQL_CONNECTION_STRING"
|
||||||
fi
|
fi
|
||||||
|
read -r -p "Would you like to install the Stripe CLI? [y/N] " stripe_response
|
||||||
|
if [[ "$stripe_response" =~ ^([yY][eE][sS]|[yY])+$ ]]; then
|
||||||
|
install_stripe_cli
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
# Install Stripe CLI
|
||||||
|
install_stripe_cli() {
|
||||||
|
echo "Installing Stripe CLI..."
|
||||||
|
# Add Stripe CLI GPG key so that apt can verify the packages authenticity.
|
||||||
|
# If Stripe ever changes the key, we'll need to update this. Visit https://docs.stripe.com/stripe-cli?install-method=apt if so
|
||||||
|
curl -s https://packages.stripe.dev/api/security/keypair/stripe-cli-gpg/public | gpg --dearmor | sudo tee /usr/share/keyrings/stripe.gpg >/dev/null
|
||||||
|
# Add Stripe CLI repository to apt sources
|
||||||
|
echo "deb [signed-by=/usr/share/keyrings/stripe.gpg] https://packages.stripe.dev/stripe-cli-debian-local stable main" | sudo tee -a /etc/apt/sources.list.d/stripe.list >/dev/null
|
||||||
|
sudo apt update
|
||||||
|
sudo apt install -y stripe
|
||||||
}
|
}
|
||||||
|
|
||||||
# main
|
# main
|
||||||
|
Loading…
x
Reference in New Issue
Block a user