Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dev workflow documentation updates #2832

Merged
merged 7 commits into from
Aug 10, 2022
Merged
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions docs/source/developer_guide/development-workflow.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ This section describes the steps necessary to build Elyra in a development envir
* [Python 3 Miniconda](https://docs.conda.io/en/latest/miniconda.html)
* [Node.js 16+](https://nodejs.org/en/)
* [Yarn](https://yarnpkg.com/lang/en/docs/install)
* [GNU Make](https://www.gnu.org/software/make/)

### Setting up your development environment

Expand Down Expand Up @@ -59,12 +60,30 @@ Download and install a [Python 3 version of Miniconda](https://docs.conda.io/en/
```
conda install -y -c conda-forge/label/main nodejs
```
* Verify node is installed correctly

```
node --version
```

* Install Yarn

```
conda install -y -c conda-forge/label/main yarn
```
* Verify yarn is installed correctly

```
yarn --version
```

* Install GNU Make

Refer to the following link for installation instructions:
[GNU Make](https://www.gnu.org/software/make/)

To verify the installation, run `make`.
Check with the output written below in [Build and Installation](#build-installation) to confirm that you have correctly installed `make`.
akchinSTC marked this conversation as resolved.
Show resolved Hide resolved

### Setting up your Elyra Github repository

Expand Down