-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.local.env.example
More file actions
21 lines (21 loc) · 940 Bytes
/
Copy path.local.env.example
File metadata and controls
21 lines (21 loc) · 940 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# .local.env - local runtime env for the devcontainer
#
# Why this exists:
# - Holds machine-local environment variables that should be injected into the
# devcontainer without changing checked-in compose defaults.
# - `initialize.sh` copies this file to `.codegeist/.local.env` in a consuming
# repository when local Git identity or runtime overrides are needed.
# - Managed worktrees can link back to the repository root's local env file so
# identity and local runtime settings stay in one place.
# - This file remains manual on purpose; project scripts only copy it when the
# local file is missing and never overwrite user changes.
#
# Related files:
# - .devcontainer/initialize.sh
# - .devcontainer/docker-compose.yml
# - .devcontainer/compose.local.yml.example
# - .codegeist/.local.env
GIT_AUTHOR_NAME=your-name
GIT_AUTHOR_EMAIL=you@example.com
GIT_COMMITTER_NAME=${GIT_AUTHOR_NAME}
GIT_COMMITTER_EMAIL=${GIT_AUTHOR_EMAIL}