From 2078a6635d6e4aab9a4c6478d48f8529d28cc6a6 Mon Sep 17 00:00:00 2001 From: Mateusz Charytoniuk <mateusz.charytoniuk@protonmail.com> Date: Sun, 11 Feb 2024 05:21:48 +0100 Subject: [PATCH] chore: grpc draft --- docs/pages/docs/features/grpc/index.md | 27 ++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 docs/pages/docs/features/grpc/index.md diff --git a/docs/pages/docs/features/grpc/index.md b/docs/pages/docs/features/grpc/index.md new file mode 100644 index 00000000..c131b055 --- /dev/null +++ b/docs/pages/docs/features/grpc/index.md @@ -0,0 +1,27 @@ +--- +collections: + - documents +draft: true +layout: dm:document +parent: docs/features/index +title: gRPC +description: > + Use gRPC for remote procedure calls and interoperability. +--- + +# gRPC + +# Installation + +You can find instruction on the official +[Google documentation page](https://cloud.google.com/php/grpc). + +On Debian-based systems: + +```shell +$ sudo apt install autoconf zlib1g-dev php-dev php-pear +$ sudo pecl install grpc +$ sudo pecl install protobuf +``` + +# Usage -- GitLab