- NodeJS:
- Docker:
- Linux : Install Docker Engine or Install Docker Desktop.
- Windows : Install Docker Desktop.
- MacOS : Install Docker Desktop.
You have the tree following options.
-
Open the project in an IDE and install the dependencies. VSCode is recommended. Recommended extensions are described in
/.vscode.npm install
-
Create an
.envfile with the following content and adapt the host address if necessary.# Windows VITE_DOWNLOAD_MICROSERVICE=http://localhost:8081 VITE_REVERSE_ENGINEERING_MICROSERVICE=http://localhost:8082 VITE_VISUALIZING_MICROSERVICE=http://localhost:8083 VITE_EVOLVING_MICROSERVICE=http://localhost:8084
VITE.
-
Build the application.
npm run build
-
Launch the application.
npm run start
The app runs at http://localhost:4173/.
-
Open the project in an IDE and install the dependencies.
npm install
-
Build the application.
npm run build
The project contains a Dockerfile at its root in order to create an image of the application.
A docker-compose.yml file also exists at the root in order to launch easily a container for the application.
-
Build the image and launch the container.
docker-compose up // TODO: environment variable in the command line
docker-compose.yml file and have to be run as with the
right privileges (administrator).