-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
57 lines (41 loc) · 1.86 KB
/
.env.example
File metadata and controls
57 lines (41 loc) · 1.86 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# Session Siphon Environment Configuration
# Copy this file to .env and customize values
# =============================================================================
# Typesense Configuration
# =============================================================================
# API key for Typesense authentication
# Generate a secure random key for production: openssl rand -hex 32
TYPESENSE_API_KEY=your-secure-api-key-here
# Typesense host (used by processor and UI)
TYPESENSE_HOST=typesense
# Typesense port
TYPESENSE_PORT=8108
# Typesense protocol (http or https)
TYPESENSE_PROTOCOL=http
# =============================================================================
# Processor Configuration
# =============================================================================
# Directory where collector uploads session files
# This should be a shared volume accessible by the processor container
INBOX_PATH=/data/session-siphon/inbox
# Archive directory for processed session files
ARCHIVE_PATH=/data/session-siphon/archive
# =============================================================================
# UI Configuration
# =============================================================================
# Next.js server port
UI_PORT=3000
# Public URL for the UI (used for CORS and links)
# NEXT_PUBLIC_APP_URL=https://siphon.example.com
# =============================================================================
# Docker Configuration
# =============================================================================
# Container image tag to use (e.g., latest, v1.0.0)
# IMAGE_TAG=latest
# =============================================================================
# Development / Debug
# =============================================================================
# Enable debug logging (true/false)
# DEBUG=false
# Log level (DEBUG, INFO, WARNING, ERROR)
# LOG_LEVEL=INFO