Hello, thank you for a wonderful project! Mega dík! It all runs fine on my VPS.
I want to make some changes to the UI and for that I want to run the project just locally on my machine. (I know I could build and deploy the build to my VPS, but really I am wondering how to develop all of this just on my machine. How do you do it?) Documentation tells only about building the project:
cd client;
npm install;
npm run build;
But is there an option how to run Neko locally? I have tried:
This start the Docker container and serves the frontend, but I am facing a problem with login. The request times out: Firefox can’t establish a connection to the server at ws://localhost:3000/ws?password=admin&username=admin. I have tried modifying the client/dev/serve file to also open port 3000:3000 (aka -p %VUE_APP_SERVER_PORT:%VUE_APP_SERVER_PORT) but that leads to the same result.
Hello, thank you for a wonderful project! Mega dík! It all runs fine on my VPS.
I want to make some changes to the UI and for that I want to run the project just locally on my machine. (I know I could build and deploy the build to my VPS, but really I am wondering how to develop all of this just on my machine. How do you do it?) Documentation tells only about building the project:
But is there an option how to run Neko locally? I have tried:
This start the Docker container and serves the frontend, but I am facing a problem with login. The request times out:
Firefox can’t establish a connection to the server at ws://localhost:3000/ws?password=admin&username=admin.I have tried modifying theclient/dev/servefile to also open port 3000:3000 (aka-p %VUE_APP_SERVER_PORT:%VUE_APP_SERVER_PORT) but that leads to the same result.