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
I have this handy script to log into any Pantheon site quickly
#!/bin/sh# A wrapper for terminus drush <site>.<env> -- uli <args>if(($#<2));then>&2echo"A wrapper for">&2echo" terminus drush <site>.<env> -- uli <args>">&2echo"Usage:">&2echo" tuli <site> <env> <optional-additional-args>"fi
SITE=$1
ENV=$2# Get rid of those first two argsshiftshift
terminus drush "$SITE"."$ENV" -- uli "$@"
But it would be really great to have this built into FIRE. So that I could just type
fire uli pr-123
To get a login URL for this site on env pr-123. This way I don't have to think about whether the site uses Pantheon or Acquia or Platform.sh or something else.
The text was updated successfully, but these errors were encountered:
I have this handy script to log into any Pantheon site quickly
But it would be really great to have this built into FIRE. So that I could just type
To get a login URL for this site on env
pr-123
. This way I don't have to think about whether the site uses Pantheon or Acquia or Platform.sh or something else.The text was updated successfully, but these errors were encountered: