Skip to content

Commit

Permalink
Cleaned docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Nat Chin committed Nov 8, 2023
1 parent 28cdb9d commit f2d5598
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 11 deletions.
15 changes: 4 additions & 11 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,19 +39,12 @@ These will also run in a github workflow on each platform.

## Developer Environment

```bash
pip3 install virtualenvwrapper
source /usr/local/bin/virtualenvwrapper.sh
mkvirtualenv --python=`which python3` solc-select-dev
git clone https://github.com/crytic/solc-select.git
cd solc-select
python setup.py develop
```

Start a shell using the solc-select virutal environment by running:
Run `make dev` to create your own development environment.

```bash
workon solc-select-dev
git clone https://github.com/crytic/solc-select.git
cd solc-select
make dev
```

Update `solc-select` by running `git pull` from the `solc-select/` directory.
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
dev:
python3 -m venv env && source ./env/bin/activate
python3 -m pip install -e .

0 comments on commit f2d5598

Please sign in to comment.