Skip to content

Commit

Permalink
Merge branch 'develop' into trigger-enhancements-for-dt
Browse files Browse the repository at this point in the history
  • Loading branch information
ArunPsiog committed Sep 27, 2023
2 parents 541cec2 + d9a4f40 commit 9372ad1
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 2 deletions.
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -79,3 +79,12 @@ covalent_ui/api/sonar.sh

# Ignore node dependencies
node_modules/

# Yarn ignored and allowed files and folders
.pnp.*
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [UNRELEASED]

### Fixed

- Contributing guidelines steps for installing for the first time
- Updated gitignore to ignore yarn files and folders for latest version of yarn

### Operations

- Changed `actions/checkout@v3` to `actions/checkout@v4` in CI
Expand Down
10 changes: 8 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,17 @@ conda create -n covalent-dev python=3.8
conda activate covalent-dev
```

We recommend using [Node Version Manager](https://github.com/nvm-sh/nvm) to install and manage Node.js. Please install and activate Node.js version 16 to work with Covalent locally:
```shell
nvm install 16
nvm use 16
```

Install Covalent's core requirements as well as the developer requirements:
```shell
conda config --add channels conda-forge
conda config --set channel_priority strict
conda install setuptools pip nodejs yarn requests
conda install setuptools pip yarn requests
python setup.py webapp
pip install -e .
pip install -r tests/requirements.txt
Expand Down Expand Up @@ -50,7 +56,7 @@ Contribution for Covalent UI

## Setup

- Install `node` (v16 or later) and `npm`:
- Install `node` (v16) and `npm`:

```shell
# Linux
Expand Down

0 comments on commit 9372ad1

Please sign in to comment.