forked from dusty-nv/jetson-containers
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.default
More file actions
77 lines (65 loc) · 2.34 KB
/
Copy path.env.default
File metadata and controls
77 lines (65 loc) · 2.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# Uncomment to set a default LLM endpoint:
# --------------------------------------------------------
# OPENAI_BASE_URL=${OPENAI_BASE_URL:-http://llm.localhost/v1}
# OPENAI_API_BASE=${OPENAI_API_BASE:-$OPENAI_BASE_URL}
# OPENAI_API_KEY=${OPENAI_API_KEY:-none}
# --------------------------------------------------------
# These override the default BSP versions and
# change the architecture and OS to build for:
# --------------------------------------------------------
# L4T_VERSION="36.4.0"
# CUDA_VERSION="13.1"
# LSB_RELEASE="24.04"
# CUDA_ARCH="tegra-aarch64" or "aarch64" or x86_64
# --------------------------------------------------------
# LOCAL PYPI/APT SERVERS CONFIGURATION
# (uncomment variables to enable)
# --------------------------------------------------------
# Primary PyPI index URL used by builds/tooling:
# - use port 8126 for CUDA 12.6
# - use port 8129 for CUDA 12.9
# - use port 8130 for CUDA 13.0
# - use port 8130 for CUDA 13.1
#
# LOCAL_PIP_INDEX_URL="http://localhost:8126"
# Primary APT index URL used by builds/tooling:
# LOCAL_TAR_INDEX_URL="http://localhost:8034"
# PyPI upload URL & host (with port) used for uploading wheels:
# PIP_UPLOAD_REPO="http://localhost:8126"
# PIP_UPLOAD_HOST="localhost:8126"
# Tarball upload — local dev uses HTTP PUT via nginx WebDAV (auto-configured):
# TAR_UPLOAD_URL="http://localhost:8034/sbsa/cu132/24.04"
#
# Remote/CI uses SCP (key-based or password-based):
# SCP_UPLOAD_KEY="/path/to/ssh_private_key"
# SCP_UPLOAD_USER="ubuntu"
# SCP_UPLOAD_HOST="localhost:/path/to/apt/root"
# OR:
# SCP_UPLOAD_PASS="password"
# SCP_UPLOAD_USER="jetson"
# SCP_UPLOAD_HOST="localhost:/home/jetson/dist/apt"
# --------------------------------------------------------
# Webhooks Configuration
# --------------------------------------------------------
# JC_BUILD_SUCCESS_WEBHOOK_URL
# JC_BUILD_FAILURE_WEBHOOK_URL
# --------------------------------------------------------
# Mount layouts & configuration
# --------------------------------------------------------
#
# /mnt/nvme
# /cache
# /huggingface
# ...
# /docker
# /jetson-containers
# /packages
# ...
# /src
# /sandbox
#
MOUNT_DIR=${CACHE_DIR:-/mnt/nvme}
CACHE_DIR=${CACHE_DIR:-$MOUNT_DIR/cache}
# Scratch space for agents and workflows
SANDBOX=${SANDBOX:-$MOUNT_DIR/sandbox}
# --------------------------------------------------------