Laravel Forge를 사용하여 GRPC 및 Protobuf 설치
2508 단어 setupgrpclaravelforgeprotobuf
레시피에 스크립트 추가
sudo pecl install grpc
sudo pecl install protobuf
echo "Add 'extension=grpc.so' to the php.ini file."
echo "Run 'php -i | grep grpc' in a terminal: it is well installed and configured if it returns something"
echo "Add 'extension=protobuf.so' to the php.ini file."
echo "Run 'php -i | grep protobuf' in a terminal: it is well installed and configured if it returns something"
서버 설정 후 스크립트 실행
Your Recipes에서 아래로 스크롤하면 GRPC/Protobuf 레시피가 아래와 같이 표시됩니다.
extension=grpc.so
extension=protobuf.so
서버 설정 중 스크립트 실행
extension=grpc.so
extension=protobuf.so
Reference
이 문제에 관하여(Laravel Forge를 사용하여 GRPC 및 Protobuf 설치), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/devlogbook/installing-grpc-and-protobuf-using-laravel-forge-4fa2텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)