ckak912 / CodeBuddy_LLM

CodeBuddy: A learning management system for programmers with integrated LLM support
https://codebuddy.byu.edu
MIT License
1 stars 1 forks source link

make dev-server command not working #9

Closed ckak912 closed 1 year ago

ckak912 commented 1 year ago

image

The error message indicates that the make dev-server command failed due to the absence of the fork function on windows. The fork function is used by the Tornado framework to spawn multiple processes for the server.

An alternative approach to run the server that I tried was to run the webserver.py script directly with Python using this command: python3 -m server/webserver. This command should execute the webserver.py script without attempting to fork the processes, however I run into some missing modules errors from webserver.py.

ckak912 commented 1 year ago

Just had to modify settings.yaml to this: Indicate the number of parallel processes that should be used for the front-end server. f_num_processes: 1