Skip to content

Commit 6ee5aea

Browse files
salonee13SaloneeakchinSTCkevin-bates
authored
Dev workflow documentation updates (#2832)
Co-authored-by: Salonee <patels21@rpi.edu> Co-authored-by: Alan Chin <akchin@us.ibm.com> Co-authored-by: Kevin Bates <kbates4@gmail.com>
1 parent 662d677 commit 6ee5aea

1 file changed

Lines changed: 23 additions & 0 deletions

File tree

docs/source/developer_guide/development-workflow.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ This section describes the steps necessary to build Elyra in a development envir
2323
* [Python 3 Miniconda](https://docs.conda.io/en/latest/miniconda.html)
2424
* [Node.js 16+](https://nodejs.org/en/)
2525
* [Yarn](https://yarnpkg.com/lang/en/docs/install)
26+
* [GNU Make](https://www.gnu.org/software/make/)
2627

2728
### Setting up your development environment
2829

@@ -59,12 +60,34 @@ Download and install a [Python 3 version of Miniconda](https://docs.conda.io/en/
5960
```
6061
conda install -y -c conda-forge/label/main nodejs
6162
```
63+
* Verify node is installed correctly
64+
65+
```
66+
node --version
67+
```
6268
6369
* Install Yarn
6470
6571
```
6672
conda install -y -c conda-forge/label/main yarn
6773
```
74+
* Verify yarn is installed correctly
75+
76+
```
77+
yarn --version
78+
```
79+
80+
* Install GNU Make
81+
82+
Refer to the following link for installation instructions:
83+
[GNU Make](https://www.gnu.org/software/make/)
84+
85+
To verify the installation, run `make`.
86+
If you have yet to [set up the repository](#setting-up-your-development-environment), you should see a message like the following:
87+
```
88+
make: *** No targets specified and no makefile found. Stop.
89+
```
90+
Once the repository is set up, running `make` from that location should display the available tasks that are listed in the [Build & Installation](#build-installation) section below.
6891
6992
### Setting up your Elyra Github repository
7093

0 commit comments

Comments
 (0)