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.
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.
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.