Initial CLI tool page

flying-sausages 2020-06-02 21:48:38 +01:00
parent f13dafdc94
commit c52528dbf6
1 changed files with 23 additions and 0 deletions

23
CLI-Tool.md Normal file

@ -0,0 +1,23 @@
You can use the mango CLI tool to perform management tasks.
## `admin`
### `user`
Using this subcommand, you can perform user administration from the command line. Below is a short list of example commands
```bash
# list the users
mango admin user list
# create a new user with admin access
mango admin user add -u new_user -p 123456 --admin
# rename the user
mango admin user update new_user -u new_name --admin
# remove admin access
mango admin user update new_name
# delete the user
mango admin user delete new_name
```