From c2156e1b339bac077fab0c025d2b6bce5eb87be3 Mon Sep 17 00:00:00 2001 From: marchersimon <50295997+marchersimon@users.noreply.github.com> Date: Wed, 10 Mar 2021 21:27:09 +0100 Subject: [PATCH] pio-account: add page (#5410) --- pages/common/pio-account.md | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 pages/common/pio-account.md diff --git a/pages/common/pio-account.md b/pages/common/pio-account.md new file mode 100644 index 0000000000..e83fea2079 --- /dev/null +++ b/pages/common/pio-account.md @@ -0,0 +1,32 @@ +# pio account + +> Manage your PlatformIO account in the command line. +> More information: . + +- Register a new PlatformIO account: + +`pio account register --username {{username}} --email {{email}} --password {{password}} --firstname {{firstname}} --lastname {{lastname}}` + +- Permanently delete your PlatformIO account and related data: + +`pio account destroy` + +- Login to your PlatformIO account: + +`pio account login --username {{username}} --password {{password}}` + +- Logout of your PlatformIO account: + +`pio account logout` + +- Update your PlatformIO profile: + +`pio account update --username {{username}} --email {{email}} --firstname {{firstname}} --lastname {{lastname}} --current-password {{password}}` + +- Show detailed information about your PlatformIO account: + +`pio account show` + +- Reset your password using your username or email: + +`pio account forgot --username {{username_or_email}}`