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 start
on 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
server
you can instead runnpm run watch
to run anodemon
instance.
In the root folder
docker build -t client client/
docker run -it -p 8080:8080 client
docker build -t server server/
docker run -it -p 3000:3000 server
Instead, we can run both docker with one command using docker compose
as follows.
docker-compose up --build
Open the project at http://localhost:8080/
.