===================================
Theia Generator can be installed locally or globally
Here is how to install it globally:
using yarn:
$ yarn global add @eclipse-che/theia-generator
using npm:
$ npm install -g @eclipse-che/theia-generator
Then, a new command line tool is available : che:theia
Once the tool is installed, the following commands are available:
che:theia initche:theia production
(help is also available with command che:theia --help)
This command needs to be launched inside a cloned directory of Eclipse Theia cloned directory
$ git clone https://github.com/theia-ide/theia
$ cd theia
$ che:theia init
once the init command has been launched:
- inside
theia/chefolder, all extensions and plugins have been cloned and checkout to their correct branches (if specified) - all extensions have their package.json updated to the versions used by the current theia. (cloned)
- in
packagesfolder, there are symlinks for each extension coming fromtheia/chefolders. All packages are prefixed by@che- - in
pluginsfolder, there are symlinks for each plugin coming fromtheia/chefolders. - in
examplesfolder, a new folder named àssemblyhas been generated and include theche-theia` assembly of Theia
In order to build the product, just run yarn at the root folder (where theia has been cloned)
Also you can provide custom yaml with your extension set, by using -c or --config parameter of che:theia init :
che:theia init -c ./path/to/custom/che-theia-init-sources.yaml
The sample of che-theia-init-sources.yaml can be found there
Dev mode is the way to use all new extensions from master branch:
che:theia init -d
And che:theia will use master branch for all extensions and plugins, regardless of provided configuration
it's easy to check changes. Running yarn watch in a module and then running yarn watch in examples/assembly folder and using yarn run start in examples/assembly
Plugins have to be compiled separately with the script plugins/foreach_yarn. This script simply run the yarn command on each subfolders of plugins and copy the .theia package in production/plugins folder to be reused by the che-theia product.
A production's ready assembly of che-theia can be obtained by running from the root folder of theia: che:theia production
It will generate in ${where theia has been cloned}/production folder a ready-to-use assembly of theia, without lot of files (like source maps, source code, etc)
It can be started with the command node ${where theia has been cloned}/production/src-gen/backend/main.js
If you want to clean up your Theia repository use
che:theia clean command, and it will undo all modification on your repository