[Websocket] Support exec

This commit is contained in:
Hui Yu
2021-06-06 13:06:50 +08:00
parent 8eb6593e55
commit 5d5e3233d3
20 changed files with 645 additions and 12 deletions

View File

@@ -16,6 +16,15 @@ CLIENT_REPO_ROOT=${PWD}/c
# Install pre-requisites
sudo apt-get install libssl-dev libcurl4-openssl-dev uncrustify libyaml-dev
# Build pre-requisite: libwebsockets
git clone https://libwebsockets.org/repo/libwebsockets --depth 1 --branch v4.2-stable
cd libwebsockets
mkdir build
cd build
cmake -DCMAKE_INSTALL_PREFIX=/usr/local/lib ..
make
sudo make install
# Move into the Kubernetes directory
cd ${CLIENT_REPO_ROOT}/kubernetes