-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
44 lines (36 loc) · 1.91 KB
/
.env.example
File metadata and controls
44 lines (36 loc) · 1.91 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
# Copy this file to .env and fill in your credentials
# The .env file will be baked into the Docker image during build
# Optional: Twilio credentials for SMS notifications
TWILIO_ACCOUNT_SID=your_twilio_account_sid
TWILIO_AUTH_TOKEN=your_twilio_auth_token
TWILIO_FROM_NUMBER=+1234567890
TWILIO_TO_NUMBER=+0987654321
# Optional: Custom conda installation (for academic/lab environments)
# Example: CONDA_PREFIX=/path/to/miniconda3
CONDA_PREFIX=
# Optional: Additional conda directories (space-separated list)
# Directories are mounted to the same path inside the container
# Automatic detection:
# - Paths with "*env*" are added to CONDA_ENVS_DIRS (for environments)
# - Paths with "*pkg*" are added to CONDA_PKGS_DIRS (for package cache)
# Example: CONDA_EXTRA_DIRS="/vol/lab/username/.conda/envs /vol/lab/username/conda_envs /vol/lab/username/.conda/pkgs /vol/lab/username/conda_pkgs"
CONDA_EXTRA_DIRS=
# Optional: System packages to install in Docker container (space-separated)
# Common scientific packages: libopenslide0 libgdal-dev libproj-dev libopencv-dev
# Example: SYSTEM_PACKAGES="libopenslide0 libgdal-dev"
SYSTEM_PACKAGES=
# Optional: Native macOS Build Support
# Enable SSH-based communication from container to macOS host for native builds
# Run ./scripts/setup_macos_ssh.sh to configure SSH keys automatically
ENABLE_MACOS_BUILDS=false
# macOS username for SSH connection (usually your macOS username)
# Default: automatically detected from current user
MACOS_USERNAME=
# Optional: Override host working directory path on macOS
# If not set, assumes same path structure as mounted in container
# Example: HOST_WORKING_DIRECTORY=/Users/username/projects/myproject
HOST_WORKING_DIRECTORY=
# Note: Build commands are now configured per-project
# Create a .env file in each project directory with NATIVE_*_COMMAND variables
# Or use claude-build.json for more complex configurations
# See README.md for examples and setup instructions