-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
27 lines (22 loc) · 843 Bytes
/
.env.example
File metadata and controls
27 lines (22 loc) · 843 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
# Katana API Configuration
# Copy this file to .env and fill in your actual values
# Required: Your Katana API key
# Can also be set via:
# - KATANA_API_KEY environment variable
# - ~/.netrc file (machine api.katanamrp.com, password field)
# - api_key parameter to KatanaClient()
KATANA_API_KEY=your_api_key_here
# Optional: Katana API base URL (defaults to production)
KATANA_BASE_URL=https://api.katanamrp.com/v1
# Optional: Development settings
DEBUG=false
LOG_LEVEL=INFO
# Test configuration (for integration tests)
# Set these if you want to run integration tests
# KATANA_TEST_API_KEY=your_test_api_key_here
# KATANA_TEST_BASE_URL=https://api.katanamrp.com/v1
# Alternative: Use ~/.netrc for centralized credential management
# Add to ~/.netrc:
# machine api.katanamrp.com
# password your-api-key-here
# Then chmod 600 ~/.netrc