kuafuai / DevOpsGPT

Multi agent system for AI-driven software development. Combine LLM with DevOps tools to convert natural language requirements into working software. Supports any development language and extends the existing code.
https://www.kuafuai.net
Other
6.48k stars 830 forks source link

Help with Backend host config #53

Closed businistry closed 1 year ago

businistry commented 1 year ago

Is any one able to help me with my env.yaml file? I keep getting an error saying "failed to read backend config......" What am I missing?

C:\Users\Todd\Desktop\DevOpsGPT\backend>python run.py ←[91mError: Failed to read the BACKEND_HOST configuration, please 【copy a new env.yaml from env.yaml.tpl】 and reconfigure it according to the documentation. ←[0m env - Copy.txt

booboosui commented 1 year ago

Looks like a configuration file path problem, try

C:\Users\Todd\Desktop\DevOpsGPT

python backend/run.py

He1sinki commented 1 year ago

I had the same problem and changed BACKEND_HOST: '0.0.0.0' to BACKEND_HOST: 'localhost' and now it works for me.