You need a license for DTK to use this functionality.
In the instruction below, you will prepare the development environment setup for your desktop. The following file will be downloaded:
File | Description | Source |
---|---|---|
devkit_<version> .zip | Desktop devkit package | on the platform |
Download the devkit package to the PC where you will use a Desktop and do the DTK work:
For Private Cloud:
http(s)://<cluster node>:<platform http port>/download/devkit
For the http port, use the NodePort number substitute for 9000, you can find it in:
$ kubectl get services -n <name space>
For AWS:
http(s)://platform.<aws domain>:9000/download/devkit
- Create an installation directory for the Devkit.
$ mkdir <devkit dir>
- Extract the devkit package to your installation directory <devkit dir>
$ unzip devkit_<version>
.zip
Setting Up the Environment Variables for the DTK.
In your development environment or build scripts you must include the devkit.jar in the class path. that was extracted above, in devkit_<version>/lib) in the class path.For example:
$ javac -cp <devkit dir>/lib/devkit.jar -sourcepath . com/mycompany/myplugin/*.java Where: com/mycompany/myplugin/, is your the code that you will build