From 1089c5f3c72655a51ff409f225c2eabcfad03340 Mon Sep 17 00:00:00 2001 From: iLLiCiTiT Date: Thu, 25 Mar 2021 17:28:15 +0100 Subject: [PATCH] it is possible to define project specific environments --- pype/settings/defaults/project_settings/global.json | 1 + .../schemas/projects_schema/schema_project_global.json | 6 ++++++ 2 files changed, 7 insertions(+) diff --git a/pype/settings/defaults/project_settings/global.json b/pype/settings/defaults/project_settings/global.json index e252a103ac..fc8e7ddaf8 100644 --- a/pype/settings/defaults/project_settings/global.json +++ b/pype/settings/defaults/project_settings/global.json @@ -4,6 +4,7 @@ "darwin": [], "linux": [] }, + "project_environments": {}, "publish": { "IntegrateHeroVersion": { "enabled": true diff --git a/pype/settings/entities/schemas/projects_schema/schema_project_global.json b/pype/settings/entities/schemas/projects_schema/schema_project_global.json index ebc8d08fb8..6e5cf0671c 100644 --- a/pype/settings/entities/schemas/projects_schema/schema_project_global.json +++ b/pype/settings/entities/schemas/projects_schema/schema_project_global.json @@ -30,6 +30,12 @@ "multiplatform": true, "multipath": true, "use_label_wrap": true + }, + { + "key": "project_environments", + "type": "raw-json", + "label": "Additional Project Environments (set on application launch)", + "use_label_wrap": true } ] }