-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathshothammer_config.yml.TEMPLATE
44 lines (43 loc) · 1.7 KB
/
shothammer_config.yml.TEMPLATE
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# Copy or this file to shothammer_config.yml and edit it appropriately
# link it alongside shotgunEventDaemon.py since it will be read in that context
---
# This is the name and key used to identify this plugin to Shotgrid.
# Create one in Shotgrid via Admin->Scripts, Add Script
# Name and Key must match or the plugin won't work
SGHS_NAME: sghs
SGHS_KEY: yoursecretkeyfullofrandomcharactersfromshotgrid
# Set to true and specify a filename if you want to serialize and save events
CAPTURE_LAST_EVENT: True
LAST_EVENT_FILE: sghs_event.pickle
# The location of the python directory from a shotgun pipeline toolkit tk-core folder
SG_TOOLKIT: C:/shotgrid-hammerspace/tk-core/python
# List of project ids that we want to process. Use SGHS_PROJECTS: null for all projects.
SGHS_PROJECTS:
- 70
# Tag prefix for filtering, only change if you have a namespace collision
SGHS_TAG_NAMESPACE: SGHS_
# Directory path default template name if you only have one shot template
SGHS_PATH_TEMPLATES:
Shot:
- shot_template_1
- shot_template_2
Sequence:
- sequence_template_1
- sequence_template_2
Task:
- task_template_1
- task_template_2
# This section is for configuring tests only. If you are not running tests you can remove this whole section.
# Leaving this section here won't hurt anything.
test:
# A local Hammerspace mount you can test on
HS_MOUNT: H:/
TEST_FILE_NAME: testfile
TEST_DIR_NAME: test_directory/
TEST_TAG: TEST_TAG
TEST_VALUE: test_value
# This must start with SGHS_ to get past the default tag filter above
TEST_KEYWORD: SGHS_TEST_KEYWORD
# Path to the python directory in a shotgrid tk-core directory
TK_CORE_PYTHON_PATH: C:/shotgrid-hammerspace/tk-core/python
...