-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
32 lines (24 loc) · 914 Bytes
/
.env.example
File metadata and controls
32 lines (24 loc) · 914 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
28
29
30
31
32
# Hostlink Development Environment Configuration
# Application Environment
# Options: development, production
APP_ENV=development
# Server Configuration
SH_APP_PORT=8080
SH_API_SERVER_HOST=localhost
# Database Configuration
# For development, use SQLite file database
# For production, use PostgreSQL connection string
SH_DB_URL=file:hostlink-dev.db
# Control Plane URL
# URL where agents will connect to poll for tasks
SH_CONTROL_PLANE_URL=http://localhost:8080
# Agent Configuration (for local agent testing)
# Private key path for agent authentication
HOSTLINK_PRIVATE_KEY_PATH=./.local/agent.key
# Agent fingerprint file path
HOSTLINK_FINGERPRINT_PATH=./.local/fingerprint.json
# Agent state directory (stores agent.json with agent ID and last sync time)
HOSTLINK_STATE_PATH=./.local
# Agent registration tokens (for development testing)
HOSTLINK_TOKEN_ID=dev-token-id
HOSTLINK_TOKEN_KEY=dev-token-key