-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy path.env.example
More file actions
executable file
·58 lines (49 loc) · 2.11 KB
/
Copy path.env.example
File metadata and controls
executable file
·58 lines (49 loc) · 2.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
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
58
# ChatMux environment configuration
# Includes only variables consumed by the server or client.
#
# Managed application data is stored in ~/.chatmux.
# ChatMux does not read or migrate legacy data directories.
#
# Available CLI commands:
# chatmux start - Start the server
# chatmux install - Configure the managed user service
# chatmux access - Manage Tailscale owner and allowed users
# chatmux status - Show configuration and data locations
# chatmux help - Show help information
# chatmux version - Show version information
# =============================================================================
# SERVER CONFIGURATION
# =============================================================================
# Backend server port (Express API + WebSocket server)
#API server
SERVER_PORT=3001
#Frontend port
VITE_PORT=5173
# Host/IP to bind servers to (default: 127.0.0.1)
# Keep this on loopback when using Tailscale Serve.
HOST=127.0.0.1
# Extra hostnames allowed to reach the Vite dev server (comma-separated).
# Needed when accessing the dev server through a proxy with a DNS name,
# e.g. Tailscale Serve: VITE_ALLOWED_HOSTS=my-machine.tailnet-name.ts.net
# VITE_ALLOWED_HOSTS=
# Authentication mode:
# none - implicit local owner (default)
# password - ChatMux username/password
# tailscale - Tailscale Serve identity + persisted allowlist
# CHATMUX_AUTH=none
# Uncomment the following line if you have a custom claude cli path other than the default "claude"
# CLAUDE_CLI_PATH=claude
# =============================================================================
# DATABASE CONFIGURATION
# =============================================================================
# Path to the authentication database file
# This is where user credentials, API keys, and tokens are stored.
#
# To use a custom location:
# DATABASE_PATH=/path/to/your/custom/auth.db
#
# Claude Code context window size (maximum tokens per session)
VITE_CONTEXT_WINDOW=160000
CONTEXT_WINDOW=160000
# Contact URI included in Web Push VAPID authentication. Must use https: or mailto:.
VAPID_SUBJECT=https://github.com/devswha/chatmux