Skip to content

Commit

Permalink
Add configuration section to the README
Browse files Browse the repository at this point in the history
  • Loading branch information
Maxim Doucet committed Jul 6, 2021
1 parent 565c795 commit 6435366
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,23 @@ It has been tested with Deadline v10.1.3.6.
```
<repo_path>/custom/scripts/General/QarnotRender.py
```

## Configuration

The `qarnot_render_deadline.py` module has a `CONFIGURATION` section at the beginning of the file that needs to be filled:

```python
######## CONFIGURATION #########################################################
self.license_server = ""
self.license_mode = "Standard"
# Your Deadline Remote Connection Server (RCS) in the form "hostname:port"
self.repository = ""
# TODO: handle the case where a certificate file is provided
self.proxy_crt = "True"
self.proxy_ssl = "True"
######## CONFIGURATION #########################################################
```

Only `license_server` and `repository` have to be filled (the rest being handled in the Qarnot profile/payload).

The configuration is done manually in `qdeadline.py` for now but all those options will eventually be exposed in the Deadline Monitor UI.

0 comments on commit 6435366

Please sign in to comment.