Skip to content

new project

Alexander Richter edited this page Oct 13, 2019 · 4 revisions

plex_03

Data Overwrite

Create a new project and and overwrite the data/configuration files.

  1. Copy the data and exe folder from your main pipeline to your project pipeline folder.

EXAMPLE: Copy plex/data to $project/pipeline/data

  1. Edit and change the order of the project path in pipeline.yml so the main pipeline is below the current ($this).

  2. change the data configurations to match your project (name, resolution, paths, ...)

# data/pipeline.yml

# ORDER: top to bottom (local, project, master)
# if top doesnt exist: next
# use $this for current location
PATH:
    # 1.local (dev & debug)
    - sandbox: C:\sandbox

    # 2.project (production)
    - project: D:\project

    # 3.pipeline (master)
    - master:  $this # D:\plex
  1. start your software from the project.

EXAMPLE: $new_project/pipeline/exe

Script Layering: Override and Add

You can override an existing script in your higher project by putting in the same folder as the sub pipeline.

  • NEW: $project_path/plex/software/nuke/menu.py
  • OLD: plex/software/nuke/menu.py

The pipeline needs to have a higher priority: data/pipeline.yml - PATH You can also just add new scripts to the your project which only can be used there.

Clone this wiki locally