-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivate_dot_env.tmpl
More file actions
63 lines (43 loc) · 1.04 KB
/
private_dot_env.tmpl
File metadata and controls
63 lines (43 loc) · 1.04 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
# Environment variables
# This file is sourced by shell configuration files
{{ if .machine.isWork }}
# Work-specific environment variables
# GitHub
export GITHUB_TOKEN="${GITHUB_TOKEN:-}"
# Sentry
export SENTRY_AUTH_TOKEN="${SENTRY_AUTH_TOKEN:-}"
# Northflank
export NORTHFLANK_API_TOKEN="${NORTHFLANK_API_TOKEN:-}"
# LiteLLM (Codex)
export LITELLM_API_KEY="${LITELLM_API_KEY:-}"
# AWS
export AWS_PROFILE="work-profile"
export AWS_REGION="us-east-1"
# Node
export NODE_ENV="production"
{{ else }}
# Personal environment variables
# GitHub
export GITHUB_TOKEN="${GITHUB_TOKEN:-}"
# Node
export NODE_ENV="development"
{{ end }}
# Common environment variables
# Editor
export EDITOR="nvim"
export VISUAL="nvim"
# Pager
export PAGER="less"
export LESS="-R"
# Colors
export CLICOLOR=1
{{ if .machine.isDarwin }}
# macOS specific environment
export DOCKER_HOST="unix://${HOME}/.colima/default/docker.sock"
# Homebrew
export HOMEBREW_NO_ANALYTICS=1
export HOMEBREW_NO_AUTO_UPDATE=1
{{ end }}
{{ if .machine.isLinux }}
# Linux specific environment
{{ end }}