You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Automate the creation of an account signup process for a Momento
This command create a momento account:
momento account signup aws \
--email YOUR_EMAIL \
--region us-east-1
> Signing up for Momento...
> Success! Your access token will be emailed to you shortly.
The text was updated successfully, but these errors were encountered:
But also allow a user to opt-out or decline. In future, we'll need to consider how we grow this project without spamming all users with logins to everything. Maybe they can provide an additional override configuration that specifies which tools they want to opt-in for installation and setup.
echo "Which tools do you want to opt-in for installation and setup? (comma separated list)"
read tools
for tool in $(echo $tools | tr ',' '\n'); do
echo "Installing and setting up $tool"
# code to install setup the selected tools
done
Automate the creation of an account signup process for a Momento
This command create a momento account:
The text was updated successfully, but these errors were encountered: