-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
104 lines (78 loc) · 2.3 KB
/
.env.example
File metadata and controls
104 lines (78 loc) · 2.3 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
# Development Environment Variables
# Copy this to .env and fill in your values
# Never commit .env to version control
# ============================================
# Database Configuration
# ============================================
# PostgreSQL
DB_HOST=localhost
DB_PORT=5432
DB_USER=devuser
DB_PASSWORD=your_secure_password
DB_NAME=mydeveloper
# PostgreSQL Connection String (alternative)
DATABASE_URL=postgresql://devuser:your_secure_password@localhost:5432/mydeveloper
# Redis
REDIS_HOST=localhost
REDIS_PORT=6379
REDIS_URL=redis://localhost:6379
# ============================================
# Environment
# ============================================
NODE_ENV=development
PYTHON_ENV=development
DEBUG=true
LOG_LEVEL=debug
# ============================================
# SSL/TLS Certificates (Local Development)
# ============================================
SSL_CERT=$HOME/.local/etc/ssl/localhost.crt
SSL_KEY=$HOME/.local/etc/ssl/localhost.key
SSL_PORT=3443
# ============================================
# API Keys
# ============================================
# OpenAI
OPENAI_API_KEY=sk-...
# Anthropic / Claude
ANTHROPIC_API_KEY=sk-ant-...
# Google Gemini
GEMINI_API_KEY=...
# GitHub
GITHUB_TOKEN=ghp_...
GITHUB_OAUTH_SECRET=...
# ============================================
# Application Configuration
# ============================================
# Server
PORT=3000
HOST=localhost
# App Name
APP_NAME=my-app
APP_VERSION=0.1.0
# ============================================
# Services
# ============================================
# Docker
DOCKER_HOST=unix:///var/run/docker.sock
# Kubernetes (if using)
KUBECONFIG=$HOME/.kube/config
# ============================================
# Development Tools
# ============================================
# Node.js
NODE_PATH=/opt/homebrew/bin/node
NPM_REGISTRY=https://registry.npmjs.org
# Python
PYTHON_PATH=/opt/homebrew/bin/python3
PIP_INDEX_URL=https://pypi.org/simple
# ============================================
# Logging
# ============================================
LOG_FILE=$HOME/.local/var/logs/app.log
LOG_FORMAT=json
# ============================================
# Testing
# ============================================
TEST_DATABASE_URL=postgresql://devuser:your_secure_password@localhost:5432/mydeveloper_test
TEST_REDIS_URL=redis://localhost:6379/1