generated from adityastomar67/StartPoint
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathenv.example
More file actions
executable file
·37 lines (25 loc) · 1.16 KB
/
env.example
File metadata and controls
executable file
·37 lines (25 loc) · 1.16 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
# ------------------------[ ENVIRONMENT VARIABLES TEMPLATE ]------------------------ #
# This file contains sensitive keys and secrets.
## [IMP] This is only an example file
#
# INSTRUCTIONS:
# 1. Copy this file: cp env.example $ZSH_PATH/.env
# 2. Edit the file: vim $ZSH_PATH/.env
# 3. Secure the file: chmod 600 $ZSH_PATH/.env
#
# NOTE: The '.env' file is automatically sourced by zshrc if it exists.
# ........................[ AI & LLM Services ]........................ #
# # OpenAI API Key (Chat, Codex, etc.)
# OPENAI_API_KEY="sk-XXXXXXXXXXXXXXXXXXXXXXXXXXXX"
# # Anthropic API Key (Claude)
# ANTHROPIC_API_KEY="sk-ant-XXXXXXXXXXXXXXXXXXXXXXXX"
# # Gemini / Google AI
# GEMINI_API_KEY="XXXXXXXXXXXXXXXXXXXXXXXXXXXX"
# ........................[ Development Tools ]........................ #
# # GitHub Token (For enhanced git operations/CLI)
# GITHUB_TOKEN="ghp_XXXXXXXXXXXXXXXXXXXXXXXXXXXX"
# # Homebrew GitHub API Token (Avoid rate limits)
# HOMEBREW_GITHUB_API_TOKEN="ghp_XXXXXXXXXXXXXXXXXXXXXXXXXXXX"
# ........................[ Custom Secrets ]........................ #
# # Any other private variables
# MY_SECRET_VAR="some-secret-value"