You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Devon is waiting for the server to stop - but user can not do that. Perhaps there is an bug for killing the server.
I needed to kill devon, start again and continue each time. The old port was taken (so the server was still alive), devon was able to use next free port (8001, 8002).
Expected: devon should close the http server after user confirms that the page looks good. Or keep the server alive and do changes to the html/js files.
I can provide full log if needed.
The text was updated successfully, but these errors were encountered:
Correction: with simple websites devon creates needed files and "Devon has left the chat.".
Yesterday it created server few times. I think creating games or more interactive projects forces it to start the server that leads to the dead-end.
Unfortunately I ran out of my API credits to do more tests at the moment. My .bash_log only shows starting devon.
to reproduce try forcing it to start a local server.
EDIT: I got the files from that project and initial prompt:
User: Make a website about slugs. Why those are cool, what they like, how to keep one for yourself. Make it flashy, animated, use a lot of emojis. For european users and slug types
server.py
import http.server
import socketserver
PORT = 8007
DIRECTORY = "."
class Handler(http.server.SimpleHTTPRequestHandler):
def __init__(self, *args, **kwargs):
super().__init__(*args, directory=DIRECTORY, **kwargs)
with socketserver.TCPServer(("", PORT), Handler) as httpd:
print("Serving at port", PORT)
httpd.serve_forever()
This is after many restart that's why it's 8007. It started at default 8000.
Rest of the files are usual HTML/CSS files.
Devon is waiting for the server to stop - but user can not do that. Perhaps there is an bug for killing the server.
I needed to kill devon, start again and continue each time. The old port was taken (so the server was still alive), devon was able to use next free port (8001, 8002).
Expected: devon should close the http server after user confirms that the page looks good. Or keep the server alive and do changes to the html/js files.
I can provide full log if needed.
The text was updated successfully, but these errors were encountered: