-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsecrets.cfg.sample
More file actions
32 lines (28 loc) · 975 Bytes
/
secrets.cfg.sample
File metadata and controls
32 lines (28 loc) · 975 Bytes
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
# Secrets Configuration File
# COPY THIS FILE TO secrets.cfg AND UPDATE WITH YOUR ACTUAL VALUES
# DO NOT COMMIT secrets.cfg TO VERSION CONTROL
[user]
# Personal information for application metadata
name = Your Name
email = your.email@example.com
# Home directory path (e.g., /Users/username or /home/username)
home_dir = /Users/username
[database]
# PostgreSQL database credentials
password = your_postgres_password_here
user = postgres
# For production, use strong passwords
# Example: generate with: openssl rand -base64 32
[api_keys]
# Internal API keys for service authentication
dev_key = generate-a-secure-dev-key
prod_key = generate-a-secure-prod-key
# WebSocket authentication token (required if require_ws_auth=true)
ws_token = generate-a-secure-ws-token
# External API keys (if needed)
# openai_api_key = sk-...
# anthropic_api_key = sk-ant-...
[auth]
# Authentication tokens (if needed)
# jwt_secret = your_jwt_secret_here
# admin_token = your_admin_token_here