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
Original file line number Diff line number Diff line change
Expand Up @@ -169,17 +169,19 @@ For more instructions on how to do this, see [Linux Deployment](/developerportal

### Portable App Distribution{#portableappdistribution}

To activate the license on a Mendix app using Portable App Distribution on either Docker, Cloud Foundry, or Unix-like servers, follow these steps:
To activate the license on a Mendix app using Portable App Distribution on Docker, Cloud Foundry, or Unix-like servers, follow these steps:

1. Open the `$ConfigName.conf` in `etc/configurations`.
2.  Add the `LicenseID` and `LicenseKey` to your runtime configuration:

```bash
# License configuration
runtime.params {
License.LicenseID = <licenseId>
License.LicenseKey = <license_Key
runtime {
license {
   id =
    key =
  }
}
```

The values for these properties can also be passed by using environment variables for your deployment type, or by creating a separate config file.
The values for these properties can also be passed by using the environment variables `RUNTIME_LICENSE_ID` and `RUNTIME_LICENSE_KEY` for your deployment type, or by creating a separate config file.

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What do you mean by environment variables for your deployment type?
We are just talking about PAD deployment here, so surely the customer just has one license ID and license key for PAD, which is what they should be putting here?

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, we are just talking about PAD deployment.
My meaning of deployment type is Linux, Docker, K8S, CF

Loading