-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
32 lines (25 loc) · 1 KB
/
Copy pathenv.example
File metadata and controls
32 lines (25 loc) · 1 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
32
# Event Configuration
EVENT_NAME="Your Event Name"
EVENT_API_ID="evt-XXXXXXXX"
# Luma API (requires Luma Plus subscription)
LUMA_API_KEY=""
# Auto-sync interval in seconds (how often to fetch fresh guest data from Luma)
# Set to 0 to disable auto-sync. Default: 300 (5 minutes)
SYNC_INTERVAL=300
# Printer Configuration
PRINTER_MODEL="QL-820NWB"
LABEL_SIZE="62x100"
# Leave empty for auto-detection, or specify like "usb://0x04f9:0x209d"
PRINTER_URI=""
# Server
HOST="0.0.0.0"
PORT=8000
# Approval status filter (comma-separated statuses to allow check-in / approval)
# Include pending_approval and waitlist so those guests can be found and approved
# at the door.
ALLOWED_STATUSES="approved,pending_approval,waitlist"
# When a pending_approval/waitlist guest checks in via the portal, also approve
# them in Luma ("Going"). Set to false for an "approve first, then check in" flow.
AUTO_APPROVE_ON_CHECKIN="true"
# Whether Luma emails the guest its standard approval notice when we approve them.
APPROVE_SEND_EMAIL="true"