Documentation updates for stable release (#73)
[akkoma] / docs / docs / administration / CLI_tasks / oauth_app.md
1 # Creating trusted OAuth App
2
3 {! administration/CLI_tasks/general_cli_task_info.include !}
4
5 ## Create trusted OAuth App.
6
7 Optional params:
8 * `-s SCOPES` - scopes for app, e.g. `read,write,follow,push`.
9
10 === "OTP"
11
12 ```sh
13 ./bin/pleroma_ctl app create -n APP_NAME -r REDIRECT_URI
14 ```
15
16 === "From Source"
17
18 ```sh
19 mix pleroma.app create -n APP_NAME -r REDIRECT_URI
20 ```