Skip to content

Commit

Permalink
No public description
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 689538970
  • Loading branch information
glados-verma authored and copybara-github committed Oct 24, 2024
1 parent 16b0c05 commit 07e17f4
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -231,15 +231,11 @@ virtualenv venv
# Activate the new virtualenv.
. venv/bin/activate

# Update build (run setuptools).
pip install build --upgrade
# Update setuptools.
pip install setuptools --upgrade

# Install openhtf into the virtualenv in dev mode.
pip install --editable .

# Install tox and run unit tests.
pip install tox
tox
python setup.py develop
```

### MacOS
Expand Down Expand Up @@ -272,7 +268,7 @@ virtualenv venv
. venv/bin/activate

# Install openhtf into the virtualenv in dev mode.
pip install --editable .
python setup.py develop
```

If you're having issues with the python setup, it's possible that the problem is due to El Capitan not including ssl headers. This [link](http://adarsh.io/bundler-failing-on-el-capitan/) may help you in that regard.
Expand Down Expand Up @@ -322,8 +318,12 @@ npm start
```

Now you've got the frontend building, but you still need to serve it. The
frontend server is started as a runnable module. See the associated
[readme](openhtf/output/web_gui/README.md).
frontend server is started as a runnable module. In a terminal where your Python
virtual environment (set up above) is active, start the server with:

```bash
python -m openhtf.output.web_gui
```

If you want the server to automatically restart when changes are detected, use
the `--dev` flag.
Expand Down

0 comments on commit 07e17f4

Please sign in to comment.