Files
proton-bridge/internal/frontend/bridge-gui/README.md
Romain LE JEUNE 8f2e616e07 GODT-1673: TLS certs generation for gRPC service
Wait for Bridge certificate and use it for gRPC connection

Other: add README file for Bridge-GUI prerequisites

GODT-1673: Configure Client/Server to make use of the bridge cert

Other : comments + todo on known issue

Other: fix go import alias [skip-ci]
2022-09-01 13:21:31 +02:00

29 lines
491 B
Markdown

## Prerequisite
```` bash
sudo apt install build-essential
sudo apt install tar curl zip unzip
sudo apt install linux-headers-$(uname -r)
sudo apt install mesa-common-dev libglu1-mesa-dev
````
## Define Qt5DIR
```` bash
export QT5DIR=/opt/Qt/5.13.0/gcc_64
````
## install vcpkg and define VCPKG_ROOT
```` bash
git clone https://github.com/Microsoft/vcpkg.git
./vcpkg/bootstrap-vcpkg.sh
export VCPKG_ROOT=$PWD/vcpkg
````
## install grpc & protobuf
```` bash
./vcpkg install grpc
````