Skip to content

OpenEnade/visualizer

Repository files navigation

OpenEnade web site. CircleCI

Client application to provide a simple graphical user interface example for the OpenEnade Api.

Codacy Badge

How to use this project.

It's recommended to use Yarn as the standard package management tool but it's not required.

To install

yarn install

Compiles and hot-reloads for development

yarn run serve

Compiles and minifies for production

yarn run build

Lints and fixes files

yarn run lint

Run your unit tests

yarn run test:unit

Using ClientApp with Docker

How to run

Docker direct command

To access the application: http://localhost.

docker run -idt \
	--name client-app \
	-p 80:8080 \
	pfelipefeitosa/client-app

The application will be served in port 80.

run.sh script

To access the application: http://localhost.

bash run.sh

The application will be served in port 80.

How to build

bash build.sh