Closed neokeld closed 3 years ago
Perhaps something like this could be added to the readme?
### Contributing 1. Fork 2. Clone and setup 3. Configure VSCode : Add that in .vscode/launch.json : { // Use IntelliSense to learn about possible attributes. // Hover to view descriptions of existing attributes. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ { "name": "HashLink (launch)", "request": "launch", "type": "hl", "cwd": "${workspaceFolder}", "preLaunchTask": { "type": "haxe", "args": "active configuration" } }, { "name": "HashLink (attach)", "request": "attach", "port": 6112, "type": "hl", "cwd": "${workspaceFolder}", "preLaunchTask": { "type": "haxe", "args": "active configuration" } } ] } 4. Develop (and press F5 to launch hashlink) 5. Pull request
Perhaps something like this could be added to the readme?