石墨消解仪后端用nodejs编写,与嵌入式端交互和前端交互均用ws
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
300 B

2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
  1. # 数据库
  2. MYSQL_HOST = 127.0.0.1
  3. MYSQL_USER = root
  4. MYSQL_PWD = root
  5. MYSQL_DB = chicken_breeding
  6. # websocket 本机中间件配置 server
  7. WEB_SOCKET_PORT = 8080
  8. WEB_SOCKET_SERVER_HOST = 127.0.0.1
  9. # websocket 嵌入式配置 server
  10. WEB_SOCKET_ARM_PORT = 8080
  11. WEB_SOCKET_ARM_SERVER_HOST = 127.0.0.1