You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We welcome feedback through discussions and issues on GitHub, however we don't currently accept pull requests due to the open-source repository being a downstream mirror of our internal codebase.
2
-
3
-
Please direct email feedback to support@databento.com or carter@databento.com.
1
+
Thank you for taking the time to contribute to our project.
2
+
We welcome feedback through discussions and issues on GitHub, as well as our [community Slack](https://databento.com/support).
3
+
While we don't merge pull requests directly due to the open-source repository being a downstream
4
+
mirror of our internal codebase, we can commit the changes upstream with the original author.
Copy file name to clipboardExpand all lines: README.md
+16-1Lines changed: 16 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -70,6 +70,21 @@ By default, cpp-httplib and nlohmann\_json are downloaded by CMake as part of th
70
70
If you would like to use a local version of these libraries, enable the CMake flag
71
71
`DATABENTO_ENABLE_EXTERNAL_HTTPLIB` or `DATABENTO_ENABLE_EXTERNAL_JSON`.
72
72
73
+
#### Ubuntu
74
+
75
+
Run the following commands to install the dependencies on Ubuntu:
76
+
```sh
77
+
$ sudo apt update
78
+
$ sudo apt install libssl-dev libzstd-dev
79
+
```
80
+
81
+
#### macOS
82
+
83
+
On macOS, you can install the dependencies with [Homebrew](https://brew.sh/) by running the following:
84
+
```sh
85
+
$ brew install openssl@3 zstd
86
+
```
87
+
73
88
### Live
74
89
75
90
Real-time and intraday replay is provided through the Live clients.
@@ -137,7 +152,7 @@ int main() {
137
152
138
153
To run this program, set the `DATABENTO_API_KEY` environment variable with an actual API key.
139
154
140
-
Additional example standalone executables are provided in the [examples](./examples) directory.
155
+
Additional example standalone executables are provided in the [`example`](./example) directory.
141
156
These examples can be compiled by enabling the cmake option `DATABENTO_ENABLE_EXAMPLES` with `-DDATABENTO_ENABLE_EXAMPLES=1` during the configure step.
0 commit comments