CoEDL / elpis

🙊 software for creating speech recognition models.
https://elpis.readthedocs.io/en/latest/
Apache License 2.0
151 stars 33 forks source link

add engines to gui package.json #312

Closed benfoley closed 1 year ago

benfoley commented 1 year ago

This addition will prevent errors when trying to build the GUI with incompatible node version. Currently, trying to install using latest node (v18) will fail due to changes to OpenSSL. These can be worked-around with a recent local node version by adding a flag to the start or build script.

    "build": "react-scripts --openssl-legacy-provider build",

But that will break the docker build, which is using node 15, oblivious to the meaning of the flag. Later, update node in the Dockerfile and check that everything is ok.