8000 Note some required system dependencies by prince-chrismc · Pull Request #616 · pyrsia/pyrsia · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Note some required system dependencies #616

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

Merged
merged 1 commit into from
Apr 26, 2022
Merged
Changes from all 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
14 changes: 12 additions & 2 deletions docs/local_dev_setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,18 @@ if you are loking to make code changes.
- Install [Docker](https://www.docker.com/get-started)
* macOS and Windows: Compose is included in Docker Desktop
* Linux: [Downloaded Compose](https://github.com/docker/compose#linux)

### Installing System Dependencies

The Pyrsia Node will then be running on `http://localhost:7888`.
- Install Clang and OpenSSL
* macOS: use [homebrew](https://brew.sh/) to install OpenSSL
```sh
brew install openssl@1.1
```
* Linux (ubuntu): use `apt` to install Clang and OpenSSL
```sh
apt install clang libssl-dev
```

## Obtain the Source Code

Expand Down Expand Up @@ -161,6 +171,6 @@ In a real life deployment these nodes will be spread over the network and will a

To test the pyrsia_node status you can use `curl` and

```
```sh
curl --location --request GET 'http://localhost:7888/status'
```
0