-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
26 lines (20 loc) · 767 Bytes
/
Copy path.env.example
File metadata and controls
26 lines (20 loc) · 767 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
# KeyForge Environment Configuration Template
# Runtime Environment (development, staging, production)
KEYFORGE_ENV=development
# Server Binding
KEYFORGE_HOST=127.0.0.1
KEYFORGE_PORT=8000
# Database Connection (SQLite or PostgreSQL)
# Example SQLite: sqlite:///./keyforge.db
# Example Postgres: postgresql://user:password@localhost:5432/keyforge_db
KEYFORGE_DB_URL=sqlite:///./keyforge.db
# Cryptographic & Security Secrets
KEYFORGE_JWT_SECRET=super_secret_jwt_key_replace_with_cprng_hex_in_prod
# Initial Administrator Credentials
KEYFORGE_ADMIN_USER=admin
KEYFORGE_ADMIN_PASS=KeyForgeAdmin2026!
# Rate Limiting Policies
KEYFORGE_RATE_LIMIT_ENABLED=true
KEYFORGE_RATE_LIMIT_VALIDATE_RPM=120
KEYFORGE_RATE_LIMIT_ACTIVATE_RPM=30
KEYFORGE_RATE_LIMIT_LOGIN_RPM=10