-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
31 lines (28 loc) · 1.11 KB
/
.env.example
File metadata and controls
31 lines (28 loc) · 1.11 KB
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
# InkyStream Environment Variables
# Copy this file to .env.local and fill in your values
# =============================================================================
# API SECURITY
# =============================================================================
# API Key for authenticating requests from your e-ink frames
# Generate a secure random key (32+ characters recommended)
# Example: INKYSTREAM_API_KEY=YourSecureRandomKey32CharsOrMore
#
# If not set, API endpoints will be open (useful for local development)
# For production deployments, always set this.
#
INKYSTREAM_API_KEY=
# =============================================================================
# NOTES
# =============================================================================
#
# Local Development:
# - Copy this file to .env.local
# - Leave INKYSTREAM_API_KEY empty for open access during development
# - Or set it to test authentication
#
# Frame Configuration:
# - Include the key in your frame's API requests:
# /api/devices/my-frame/random?key=YOUR_API_KEY
# - Or use Authorization header:
# Authorization: Bearer YOUR_API_KEY
#