This project facilitates linking related OpenSphere projects (OpenSphere, plugins, configuration) with Yarn workspaces.
- Install Yarn.
- Clone this project.
- Clone any projects/dependencies under development to the
workspace
directory. Allworkspace
subfolders will be linked appropriately innode_modules
byyarn install
. At minimum, clone a fork of OpenSphere.
Any directories prefixed with opensphere-plugin-
or opensphere-config-
will be detected by the OpenSphere resolver as plugin/config projects and included in the OpenSphere build.
After cloning all projects, run yarn install
. Running this from any directory will update links/dependencies for the entire workspace.
To avoid OS related discrepencies, containerized development commands are as follows:
To run a containerized version of the build:
./Dockerfile-BUILD.sh
To run containerized unit tests:
./Dockerfile-TEST.sh
To run the app from a container:
./Dockerfile-DEV.sh
Then navigate to http://localhost:8282/workspace/opensphere/dist/opensphere/index.html
The staging
folder can be used to clone projects you may not always want to include in the OpenSphere build. For example, if you regularly swap out plugins or configuration you can clone them to staging
and symlink them to workspace
when needed. They will only be linked by Yarn and detected by the OpenSphere resolver when symlinked to workspace
. Always run yarn install
after changing these links to ensure the workspace is set up correctly.