Skip to content

Commit 5280d31

Browse files
authored
Merge pull request #3041 from XRPLF/issue_creds_macos_notes
Credential Issuer tutorial: macOS notes
2 parents 57cd7a2 + 0f1efe3 commit 5280d31

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

docs/tutorials/python/build-apps/credential-issuing-service.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,12 @@ To start the issuer microservice in dev mode, run the following command from the
5757
flask --app issuer_service run
5858
```
5959

60+
On macOS, you may need to specify a different port number because the Flask default port, `5000`, is used by the OS's **AirPlay Receiver** service. For example:
61+
62+
```sh
63+
flask --app issuer_service run --port 5008
64+
```
65+
6066
It should prompt you for your **issuer account** seed. Input the secret key you saved previously and press Enter.
6167

6268
The output should look like the following:
@@ -82,6 +88,7 @@ To request a credential, make a request such as the following:
8288
{% tab label="Summary" %}
8389
* HTTP method: `POST`
8490
* URL: `http://localhost:5000/credential`
91+
{% admonition type="info" name="Note for macOS Users" %}If you specified a different port when starting the service, change `:5000` in this and other examples to match the port you specified.{% /admonition %}
8592
* Headers:
8693
* `Content-Type: application/json`
8794
* Request Body:

0 commit comments

Comments
 (0)