Skip to content

Commit

Permalink
Add proxy notes to new README.dev.md troubleshooting section.
Browse files Browse the repository at this point in the history
[with some fixups by tabbott]
  • Loading branch information
ashishk1994 authored and timabbott committed Mar 30, 2016
1 parent c16749d commit 62cb36c
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
Empty file added .npmignore
Empty file.
19 changes: 19 additions & 0 deletions README.dev.md
Original file line number Diff line number Diff line change
Expand Up @@ -500,3 +500,22 @@ Possible testing issues
][lxc-sf].

[lxc-sf]: https://github.com/fgrehm/vagrant-lxc/wiki/FAQ#help-my-shared-folders-have-the-wrong-owner)

Troubleshooting development environment setup
=============================================

If you are building the development environment on a network where a
proxy is required to access the Internet, you will need to set the
proxy in the environment as follows:

- On Ubuntu, set the proxy environment variables using:
```
export https_proxy=http://proxy_host:port
export http_proxy=http://proxy_host:port
```

- And set the npm proxy and https-proxy using:
```
npm config set proxy http://proxy_host:port
npm config set https-proxy http://proxy_host:port
```

0 comments on commit 62cb36c

Please sign in to comment.