Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,10 @@ web_modules/
.env.*
!.env.example

# Test databases
test/*.sqlite3
test/*.sqlite3-*

# parcel-bundler cache (https://parceljs.org/)
.cache
.parcel-cache
Expand Down
5 changes: 4 additions & 1 deletion env.example
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,15 @@ AUTH_DIR=/etc/korp-auth
# ============================================================================

# Path to JWT private key (PEM format)
# Generate with: openssl genrsa -out private_key.pem 2048
JWT_PRIVATE_KEY_PATH=/etc/korp-auth/private_key.pem

# API key for Mink service integration (resource deletion endpoint)
MINK_API_KEY=your-api-key-here

# API key for admin endpoints (entitlement and grant management)
# Generate a strong random key, e.g.: openssl rand -hex 32
ADMIN_API_KEY=your-admin-api-key-here

# ============================================================================
# Database Configuration
# ============================================================================
Expand Down
Loading