Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/app-dev-share-app.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ Sharing your app
To share your app with other specific users, just use two commands:

```sh
systems-roles-addupdate -v -u <cyverse username of person sharing with> -r <permission level> <app system name>
apps-pems-update -v -u <cyvserse username of person sharing with> -p <permission level> <app name>
tapis systems roles grant <app system name> <cyverse username of person sharing with> <permission level>
tapis apps pems grant <app name> <cyvserse username of person sharing with> <permission level>
```

Here is an example of sharing your application "me-foo-0.0.1" with a user with the CyVerse "qwerty" and on your system "stampede-01010000-12340-me" to which your app is registered.

```sh
systems-roles-addupdate -v -u qwerty -r USER stampede-01010000-12340-me
apps-pems-update -v -u qwerty -p READ_EXECUTE me-foo-0.0.1
tapis systems roles grant stampede-01010000-12340-me qwerty USER
tapis apps pems grant me-foo-0.0.1 qwerty READ_EXECUTE
```

To make your app publicly available to the entirety of CyVerse, join the developer community on [Agave’s Slack communication channel](https://slackin.agaveapi.co) and share your request there.
Expand Down