The example of how to build the Theia-based applications with the deployment-extension.
Install nvm.
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.5/install.sh | bash
Install npm and node.
nvm install v12.22.11
nvm use 12.22.11
Install yarn.
npm install -g yarn
yarn && yarn start:browser
or:
yarn rebuild:browser
cd browser-app
yarn start
or: launch Start Browser Backend
configuration from VS code.
1 yarn
2 yarn start:browser
3 split terminal
4 yarn wacth
Open http://localhost:3000 in the browser.
yarn start:electron
or:
yarn rebuild:electron
cd electron-app
yarn start
or: launch Start Electron Backend
configuration from VS code.