New Entity AI



dugout-> trine_manifest.dugout



Define a trine-based initializer routine


            
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/sh
###############################################################################
## COPYRIGHT (C) 2020-2026 NEW ENTITY OPERATIONS INC. ALL RIGHTS RESERVED
## INSTANCE: trine_manifest.dugout
## MODIFIED: 2026/04/20
## OVERVIEW: Define a source path for a core.host local trine portal.
## The provided version is generic, but it can be modified to enforce various
## startup tasks, such as connecting to a specific proxy, using defined
## credentials, and more.
## This will bring up a sourced environment to program within.
## If you want to add additional versions, add them here, such as dev,
## branch*, etc. This can be used to manage many different instance at the same
## time.
###############################################################################
## Work on trine-related environments
###############################################################################
operate_on_trine_dev() {
 cd "$PATH_TRINE" || exit
 . "${PATH_VE_TRINE}${PATH_VE_SOURCE}"
 python
}