-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
17 lines (14 loc) · 775 Bytes
/
.env.example
File metadata and controls
17 lines (14 loc) · 775 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Updown.io .NET Client - Environment Variables Example
# Copy this file to .env and fill in your actual values
# NEVER commit the .env file to version control
# Your Updown.io API key (get it from https://updown.io/settings/edit)
# Used for manual integration tests
UPDOWN_API_KEY=your-api-key-here
# Your pulse monitoring URL (from Updown.io dashboard)
# Format: https://pulse.updown.io/YOUR-TOKEN/YOUR-KEY
UPDOWN_PULSE_URL=https://pulse.updown.io/your-token/your-key
# Notes:
# - These values are only needed if you want to run manual tests against the real API
# - The automated unit tests do NOT require these values
# - For security, use separate API keys for development/testing vs production
# - This file (.env) is already in .gitignore and will not be committed