使用cro stub http test test创建存根服务后,我在 .cro.yml 中定义了 TEST_PORT 环境变量:
---
id: test
cro: 1
name: "test"
endpoints:
-
id: http
name: HTTP
protocol: http
host-env: TEST_HOST
port-env: TEST_PORT
links: []
entrypoint: service.p6
env:
- name: TEST_PORT
value: "3001"
...
尽管如此,Cro 仍然使用默认的 20000 端口。Alex Schroeder导出环境变量以在不同的端口启动 Cro。命令“ export TEST_PORT="3001" && cro run ”仍然使用默认端口。
在 Cro 中定义服务端口的正确形式是什么?