-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add reference to env variables & tokens #177
base: master
Are you sure you want to change the base?
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
--- | ||
title: "Environment Variables" | ||
linkTitle: "Environment Variables" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Environment variables |
||
date: 2019-03-30 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't personally see much value in merging a page like this has no useful information. The tokens page looks useful. However if we merge the environment variables page, then we should set the page in the future so that our publishing framework (Hugo) doesn't actually make the page visible until it's ready. For example set the date to: 2025-01-01 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @sharifsalah You can let me know the useful information needed to be added in the environment variable's page and I will add it accordingly. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think it's ok to submit it with a future publish-date, then I can send a followup PR to fill in the content for each env var. |
||
weight: 4 | ||
description: > | ||
Reference for common environment variables | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I recommend making this more task oriented, as follows: Configure common environment variables |
||
--- | ||
|
||
This page list some of the most common environment variables used in OpenCUE. | ||
bcipriano marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
## Outline | ||
|
||
Environment variables related to pyOutline. | ||
|
||
##### OL_BASE_SESSION_PATH | ||
bcipriano marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
|
||
##### OL_LAYER_SESSION_PATH | ||
|
||
|
||
##### OL_LAYER_RANGE | ||
|
||
|
||
##### OL_VERSION | ||
|
||
|
||
##### OL_OS | ||
|
||
|
||
##### OL_TAG_OVERRIDE | ||
|
||
|
||
##### OL_CONFIG | ||
|
||
## CueBOT | ||
bcipriano marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
Environment variables related to CueBOT. | ||
|
||
##### CUEBOT_HOSTS | ||
|
||
|
||
##### CUEBOT_GRPC_CUE_PORT | ||
|
||
|
||
##### CUEBOT_GRPC_RQD_SERVER_PORT | ||
|
||
|
||
## Others | ||
|
||
|
||
##### CUEGUI_DEFAULT_INI_PATH | ||
|
||
|
||
##### OPENCUE_CONF | ||
|
||
|
||
##### CUESUBMIT_CONFIG_FILE | ||
|
||
|
||
##### CUE_FRAME_LOG_DIR | ||
|
||
|
||
##### CUE_FS_ROOT | ||
|
||
|
||
##### CUE_PYTHON_BIN | ||
|
||
|
||
##### CUE_PYTHONPATH |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
--- | ||
title: "Tokens" | ||
linkTitle: "Tokens" | ||
date: 2019-03-30 | ||
bcipriano marked this conversation as resolved.
Show resolved
Hide resolved
|
||
weight: 5 | ||
description: > | ||
Various tokens that can be used in the commands you send to Cue | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I recommend updating the description to: Specify dynamic tokens in OpenCue jobs There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. To be clear, here I'm just describing the value of the string to update. I'm not describing the syntax or the way you should update the code. If you looks at similar Markdown ( There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Oh ya, sorry my bad. I didn't pay attention to that. |
||
--- | ||
|
||
Tokens can be used in the commands when submitting outline jobs, either inthe graphical Cuesubmit client, or via the PyOutline API. | ||
bcipriano marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
Following are the commonly used tokens: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I recommend updating to: This page describes tokens you can use in commands when submitting OpenCue jobs, either in the graphical Cuesubmit (I would delete the sentence 'Following are the commonly used tokens:' as we're not |
||
|
||
|
||
##### #ZFRAME# | ||
To be added. | ||
bcipriano marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
##### #IFRAME# | ||
bcipriano marked this conversation as resolved.
Show resolved
Hide resolved
|
||
The number of the current frame. | ||
|
||
##### #FRAME_START# | ||
The number of the final frame in the current chunk. | ||
|
||
##### #FRAME_END# | ||
The number of the final frame in the current chunk. | ||
|
||
##### #FRAME_CHUNK# | ||
The value of the current chunk. | ||
|
||
##### #LAYER# | ||
The name of the current layer. | ||
|
||
##### #JOB# | ||
The name of the current job. | ||
|
||
##### #FRAMESPEC# | ||
The value of the current frame spec. A frame spec consists | ||
bcipriano marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We use sentence case for all OpenCue documentation, so this should be:
Environment variables