Migrate User Workspace
Migrate from 8.x to 9.x
In version 9.0.0, we renamed the environment variables used by MoveIt Pro to better align with product naming. These included environment variables which were used in user workspaces such as:
STUDIO_USERNAME→MOVEIT_USERNAMESTUDIO_USER_UID→MOVEIT_USER_UIDSTUDIO_USER_GID→MOVEIT_USER_GIDSTUDIO_DOCKER_TAG→MOVEIT_DOCKER_TAGSTUDIO_LICENSE_KEY→MOVEIT_LICENSE_KEY
If you are using Linux, you can update your entire workspace with the following bash command:
cd <your_moveit_pro_workspace>
sed -i 's/MOVEIT_STUDIO_BASE_IMAGE/MOVEIT_PRO_BASE_IMAGE/g' Dockerfile
for file in $(grep -r 'STUDIO_' -l); do
sed -i 's/STUDIO_/MOVEIT_/g' $file;
done