'Running Several Server and Clients From a Shared Local Drive?

I have devolved a web application that manages prescriptions for a pharmacy. It uses a SQLite database, Django server, GraphQL API, and React on the frontend. It takes several weeks to get elevated privileges for any task so I have installed all of this software without admin rights (nodejs, npm, py, etc). All of the software is installed into a shared drive so all of the computers may access the files. Also, please note that all of the data must be local and can not be hosted by a third party; I also doubt they will be able to host it on a server themselves.

So right now I have a .bat file that starts up the Django server and runs the React production build (npm run build, serve -s build). The problem is when several users try to use the React build it gives a Server Error 500 msg.

My question is: Is there a easier way to run the Django/react builds without having to make one copy of the repository in the shared drive per user? Additionally, is it okay to have several Django servers connected to the SQLite database or should I do something else?



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source