OLD | NEW |
1 To open the sdk repo using IntelliJ, you can: | 1 # Working on the SDK repo using IntelliJ |
2 | 2 |
3 - choose `File` > `Open...`, and select the <sdk>/client/idea directory | 3 To work on Dart code in the SDK repo, we recommend either IntelliJ Community |
4 - or, from the CLI, type: `idea <sdk>client/idea` (for this to work you need to | 4 Edition or IntelliJ Ultimate. |
5 set up an IntelliJ command-line launcher) | 5 |
| 6 ## Opening from IntelliJ |
| 7 |
| 8 To open the sdk repo using IntelliJ, choose `File` > `Open...` and select the |
| 9 `<sdk>/client/idea` directory. |
| 10 |
| 11 ## Opening from the command-line |
| 12 |
| 13 To open from the command-line, type: |
| 14 |
| 15 ``` |
| 16 idea <sdk>/client/idea |
| 17 ``` |
| 18 |
| 19 This depends on having previously set up the IntelliJ command-line launcher. To |
| 20 do this, from the `Tools` menu, select `Create Command-line Launcher...`. |
OLD | NEW |