Skip to content

Commit

Permalink
git tag v1.0.1+2
Browse files Browse the repository at this point in the history
  • Loading branch information
IoTServ committed Mar 17, 2024
1 parent 386bf8b commit 5de9434
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## [1.0.1+2]

* add local gateway Ip and Port

## [1.0.1+1]

* update
Expand Down
13 changes: 11 additions & 2 deletions lib/constants/Config.dart
Original file line number Diff line number Diff line change
@@ -1,11 +1,20 @@
class Config {
// serve web static file
// flutter serve web static file
static String webStaticIp = "127.0.0.1";
static int webStaticPort = 9000;

// 数据服务器服务后台
static String iotManagergRpcIp = "iot-manager.iotserv.com";
static int iotManagerRpcPort = 8881;

// 修改上面的变量名称
static String iotManagerGrpcIp = "iot-manager.iotserv.com";
static int iotManagerGrpcPort = 8881;

// 本机网关的grpc地址
static String gatewayGrpcIp = "127.0.0.1";
static int gatewayGrpcPort = 55443;

// go后台服务本机webserver
static String webgRpcIp = "127.0.0.1";
static int webgRpcPort = 2080;
//http的api,目前主要是ssh的websocket
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: openiothub_constants
description: openiothub_constants
version: 1.0.1+1
version: 1.0.1+2
homepage: https://github.com/OpenIoTHub

environment:
Expand Down

0 comments on commit 5de9434

Please sign in to comment.