Skip to content

Latest commit

 

History

History
34 lines (26 loc) · 1021 Bytes

File metadata and controls

34 lines (26 loc) · 1021 Bytes

Taipy GUI front-end

This directory contains the source code of the Taipy GUI front-end bundle that includes the web app and all the elements natively available in Taipy GUI.

Prerequisites

Node.js JavaScript runtime version 18 or above must be installed on your machine.
Note that Node.js comes with the npm package manager as part of the standard installation.

Build

To build the Taipy GUI bundle, you must set your current directory to this directory and then run the following commands:

# Current directory is the directory where this README file is located:
#   [taipy-dir]/frontend/taipy-gui
#
# Install the DOM dependencies (once and for all)
cd dom
npm i
cd ..
# Install the web app dependencies
npm i
# Build the web app and all elements
npm run build

After these commands are successfully executed, a new directory will be created in [taipy-dir]/taipy/gui/webapp containing all the code that the Taipy GUI front-end relies on.