Reputation: 254
I have been using the Windows based ECL IDE for 11 years, but would now like to migrate to using the Visual Studio Code with the ECL extension. Is there any available documentation, or can you share any migration tips and best practices? Thanks!
I have been to the marketplace web page text but perhaps a clear step-by-step list of installation steps would be great.
Upvotes: 0
Views: 319
Reputation: 254
I found this useful information from another ECL developer using VSCode:
Getting Started with Visual Studio Code Editor and ECL
Locate and install the appropriate ECL Client Tools version from hpccsystems.com
Install VSCode if you haven’t yet done so. You can install to Windows, Linux, or Mac platforms. Here is the link:
https://code.visualstudio.com/download
For Windows 10, I used the 64-bit Users Install for Windows.
HPCC Cluster Configuration
VSCode will supply a default profile for ECL and the users can manually modify the following as needed: Example:
"name": "play.hpccsystems.com",
"type": "ecl",
"request": "launch",
"protocol": "https",
"serverAddress": "play.hpccsystems.com",
"port": 18010,
"targetCluster": "thor",
"rejectUnauthorized": false,
"resultLimit": 100,
"timeoutSecs": 60,
"user": "Bob",
"password": "(IfNeeded)"
Running your first ECL file
Happy Coding!
Upvotes: 2