We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
PlanetScale is a MySql compliant environment. The CLI is called pscale and has a dependency to the mysql CLI.
pscale
mysql
Much the same way GitHubs CLI gh has a dependency to the git cli.
gh
git
Actually you'll find that pscale is built much on the same concept as gh - nice!
Now we need to setup the environment for use:
We're here on PlanetScale environment set up in the documentation.
Assuming MySql client is already installed (more details):
brew install planetscale/tap/pscale
scoop bucket add pscale https://github.com/planetscale/scoop-bucket.git scoop install pscale mysql
Assuming your are on a default Codespace on GitHub (Ubuntu) - without MySql Client installed more details
sudo apt-get update && sudo apt-get install -y mysql-client curl -LO https://github.com/planetscale/cli/releases/download/v0.131.0/pscale_0.131.0_linux_amd64.deb sudo dpkg -i pscale_0.131.0_linux_amd64.deb rm pscale_0.131.0_linux_amd64.deb
To test if it works simply run
The text was updated successfully, but these errors were encountered:
No branches or pull requests
PlanetScale is a MySql compliant environment. The CLI is called
pscale
and has a dependency to themysql
CLI.Much the same way GitHubs CLI
gh
has a dependency to thegit
cli.Actually you'll find that
pscale
is built much on the same concept asgh
- nice!Now we need to setup the environment for use:
We're here on PlanetScale environment set up in the documentation.
Install using package manager
MacOs
Assuming MySql client is already installed (more details):
Windows
Assuming MySql client is already installed (more details):
Codespace (Ubuntu)
Assuming your are on a default Codespace on GitHub (Ubuntu) - without MySql Client installed more details
sudo apt-get update && sudo apt-get install -y mysql-client curl -LO https://github.com/planetscale/cli/releases/download/v0.131.0/pscale_0.131.0_linux_amd64.deb sudo dpkg -i pscale_0.131.0_linux_amd64.deb rm pscale_0.131.0_linux_amd64.deb
To test if it works simply run
The text was updated successfully, but these errors were encountered: