File tree Expand file tree Collapse file tree 4 files changed +22
-12
lines changed Expand file tree Collapse file tree 4 files changed +22
-12
lines changed Original file line number Diff line number Diff line change 1
- REDIS_URL = ' redis://localhost:6379'
2
1
ENVIRONMENT = ' development'
3
2
MODE = ' static'
3
+ NATS_URL = ' nats://localhost:4222'
4
+ NATS_BUCKET = ' flow_store'
4
5
RUNTIME_TOKEN = " <token>"
5
- FLOW_FALLBACK_PATH = ' ./flow/test_flow_one.json'
6
+ FLOW_FALLBACK_PATH = ' ../flow/test_flow_one.json'
7
+ GRPC_HOST = ' 127.0.0.1'
8
+ GRPC_PORT = 8081
9
+ WITH_HEALTH_SERVICE = false
10
+ SAGITTARIUS_URL = ' http://localhost:50051'
Original file line number Diff line number Diff line change 1
- REDIS_URL='redis://localhost:6379'
2
- ENVIRONMENT='development'
3
- MODE='static'
1
+ ENVIRONMENT='production'
2
+ MODE='dynamic'
3
+
4
+ NATS_URL='nats://localhost:4222'
5
+ NATS_BUCKET='flow_store'
6
+
4
7
RUNTIME_TOKEN="<token>"
5
- FLOW_FALLBACK_PATH='../flow/test_flow_one.json'
8
+ FLOW_FALLBACK_PATH='./path/to/flow.json'
9
+
10
+ GRPC_HOST='127.0.0.1'
11
+ GRPC_PORT=50051
12
+
13
+ WITH_HEALTH_SERVICE=false
14
+
15
+ SAGITTARIUS_URL='http://localhost:50051'
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ impl Config {
66
66
grpc_host : env_with_default ( "GRPC_HOST" , String :: from ( "127.0.0.1" ) ) ,
67
67
with_health_service : env_with_default ( "WITH_HEALTH_SERVICE" , false ) ,
68
68
runtime_token : env_with_default ( "RUNTIME_TOKEN" , String :: from ( "default_session_token" ) ) ,
69
- backend_url : env_with_default ( "BACKEND_URL " , String :: from ( "http://localhost:8080 " ) ) ,
69
+ backend_url : env_with_default ( "SAGITTARIUS_URL " , String :: from ( "http://localhost:50051 " ) ) ,
70
70
}
71
71
}
72
72
You can’t perform that action at this time.
0 commit comments