Skip to content

Modify the Web Client

Anselmo Battisti edited this page Oct 25, 2019 · 2 revisions

The Web Client was writed mainly using VUE JS, this guy make very good tutorials about it https://www.youtube.com/channel/UCSJbGtTlrDami-tDGPUV9-w/search?query=vue

The web-app is the folder when the client source is stored.

When you use the docker-compose up there was a container with a HTTP server that serve the builded files from the web-app, and you access it via localhost:8081

To improve the web client inside the web-cli folder run

npm run serve

It will run the webpack with auto reaload

After make the modifications stop the serve and run

npm run build

it will generate the compiled html and js files

after that build again the docker-composer with

docker-compose build

or another way is run inside web-app

docker build . -t alfa_web-app