project-manifest

To install all official open source projects for local development, use the following scripts inside your ethereal engine installation.

Install the demo scenes

npm run install-manifest -- --manifestURL="https://github.com/EtherealEngine/project-manifest/blob/main/ee-scenes.manifest.json" --branch="dev"

Install all the tutorials

npm run install-manifest -- --manifestURL="https://github.com/EtherealEngine/project-manifest/blob/main/ee-tutorials.manifest.json" --branch="dev"

Install all plugins

npm run install-manifest -- --manifestURL="https://github.com/EtherealEngine/project-manifest/blob/main/ee-plugins.manifest.json" --branch="dev"

Install the core contributor test suite

npm run install-manifest -- --manifestURL="https://github.com/EtherealEngine/project-manifest/blob/main/ee-core.manifest.json" --branch="dev"

Note: to allow private repos to install correctly:

git config --global credential.helper cache
git config --global credential.helper 'cache --timeout=100000000'

then clone one repo to enter your Username & Personal Access Token, then run the rest of the clone commands

To do:

  • Add a manifest.json that can be fetched and installed See more
  • Keep up to date when new projects are added with Github Actions