diff --git a/anatomy/roots.json b/anatomy/roots.json index 7d4ebc4..2d98ba4 100644 --- a/anatomy/roots.json +++ b/anatomy/roots.json @@ -2,11 +2,11 @@ "work": { "windows": "P:/projects/work", "linux": "/mnt/share/projects/work", - "darwin": "/darwin/path/work" + "darwin": "/Volumes/path/work" }, "publish": { "windows": "P:/projects/publish", "linux": "/mnt/share/projects/publish", - "darwin": "/darwin/path/publish" + "darwin": "/Volumes/path/publish" } } diff --git a/environments/global.json b/environments/global.json index adca072..4607633 100644 --- a/environments/global.json +++ b/environments/global.json @@ -7,6 +7,7 @@ "STUDIO_SOFT": "{PYP_SETUP_ROOT}/soft", "FFMPEG_PATH": { "windows": "{PYPE_SETUP_PATH}/vendor/bin/ffmpeg_exec/windows/bin", + "darwin": "{PYPE_SETUP_PATH}/vendor/bin/ffmpeg_exec/darwin/bin", "linux": "{PYPE_SETUP_PATH}/vendor/bin/ffmpeg_exec/linux" }, "DJV_PATH": { @@ -26,7 +27,8 @@ "PYPE_PROJECT_CONFIGS": "{PYPE_SETUP_PATH}/../studio-project-configs", "PYPE_PYTHON_EXE": { "windows": "{VIRTUAL_ENV}/Scripts/python.exe", - "linux": "{VIRTUAL_ENV}/Scripts/python" + "linux": "{VIRTUAL_ENV}/Scripts/python", + "darwin": "{VIRTUAL_ENV}/bin/python" }, "PYPE_LOG_MONGO_HOST": "localhost", "PYPE_LOG_MONGO_PORT": "2707", diff --git a/launchers/darwin/blender_2.82 b/launchers/darwin/blender_2.82 new file mode 100755 index 0000000..8254411 --- /dev/null +++ b/launchers/darwin/blender_2.82 @@ -0,0 +1,2 @@ +#!/usr/bin/env bash +open -a blender $@ diff --git a/launchers/darwin/python3 b/launchers/darwin/python3 new file mode 100755 index 0000000..c2b82c7 --- /dev/null +++ b/launchers/darwin/python3 @@ -0,0 +1,2 @@ +#!/usr/bin/env bash +open /usr/bin/python3 --args $@ diff --git a/system/storage.json b/system/storage.json new file mode 100644 index 0000000..c03b3d2 --- /dev/null +++ b/system/storage.json @@ -0,0 +1,28 @@ +{ + "studio": { + "projects": { + "path": { + "windows": "//network/path/to/projects", + "darwin": "/Volumes/path/to/projects", + "linux": "/mnt/share/projects" + }, + "mount": { + "windows": "P:/mounted/path/to/projects", + "darwin": "/Volumes/path/to/projects", + "linux": "/mnt/share/core" + } + }, + "core": { + "path": { + "windows": "//network/path/to/core", + "darwin": "/Volumes/path/to/core", + "linux": "/mnt/share/core" + }, + "mount": { + "windows": "K:/network/path/to/core", + "darwin": "/Volumes/path/to/core", + "linux": "/mnt/share/core" + } + } + } +}