Implementation of Julia console on the web.
First install all the necessary dependencies npm install on server and client folders.
Then, simply run
npm run starton both server and client folders.
There is also a simple script called RUN.dev.sh where you can run both servers with one command.
For watching changes in the
serveryou can instead runnpm run watchto run anodemoninstance.
In the root folder
docker build -t client client/
docker run -it -p 8080:8080 clientdocker build -t server server/
docker run -it -p 3000:3000 serverInstead, we can run both docker with one command using docker compose as follows.
docker-compose up --buildOpen the project at http://localhost:8080/.
