ソースを参照

Merge pull request #1683 from visuddhinanda/laravel

RPC_SERVER -> GRPC_WEB_SERVER
visuddhinanda 2 年 前
コミット
777dc26e7d
2 ファイル変更11 行追加3 行削除
  1. 7 0
      change-logs.md
  2. 4 3
      config/mint.php

+ 7 - 0
change-logs.md

@@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.
 The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
 and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
 
+## [2.1.0] - 2023-11-8
+
+- rename RPC_SERVER to GRPC_WEB_SERVER in .env.example
+- rename RPC_SERVER to GRPC_WEB_SERVER in .config.example.php
+- rename RPC_SERVER to GRPC_WEB_SERVER in .config.example.js
+
+
 ## [2.0.3] - 2023-07-20
 
 - add DASHBOARD_URL to .env

+ 4 - 3
config/mint.php

@@ -15,12 +15,13 @@ return [
 
     'server' => [
         'rpc' => [
+            'grpc' => env('GRPC_WEB_SERVER', "http://localhost:9999"),
 
-            'morus' => env('MORUS_RPC_SERVER', "localhost:9999"),
+            'morus' => env('MORUS_GRPC_SERVER', "http://localhost:9999"),
 
-            'lily' => env('LILY_RPC_SERVER', "192.168.43.100:9000"),
+            'lily' => env('LILY_GRPC_SERVER', "http://localhost:9000"),
 
-            'tulip' => env('TULIP_RPC_SERVER', "localhost:9990"),
+            'tulip' => env('TULIP_GRPC_SERVER', "http://localhost:9990"),
         ],
 
         'assets' => env('ASSETS_SERVER', "localhost:9999"),