prism_project.py
Every Prism project needs a prism_project.py
file. This file serves two purposes:
It tells Prism that the directory is indeed a project
It contains information about your Python environment and project.
Here's what the default prism_project.py
file looks like:
All prism projects require a prism_project.py
file. This file tells prism that it is working inside a valid project.
The prism_project.py
is a normal Python module with module-level variables representing Prism settings. Next, we provide some more detail on specific settings, such as:
RUN_ID / SLUG
SYS_PATH_CONF
THREADS
PROFILE_YML_PATH / PROFILE
PRISM_LOGGER
TRIGGER_YML_PATH / TRIGGERS
More on these next.
Last updated