-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdocker.example.env
More file actions
33 lines (26 loc) · 1.07 KB
/
docker.example.env
File metadata and controls
33 lines (26 loc) · 1.07 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
# Meeseeks Docker Compose environment
# Copy this file to docker.env and fill in your values:
# cp docker.example.env docker.env
#
# See configs/app.json for runtime, LLM, Langfuse, and API settings.
# API authentication token — generate a strong random string
MASTER_API_TOKEN=CHANGE_ME
# Exposed ports (host networking)
API_PORT=5125
CONSOLE_PORT=3001
# Host user identity — container user inherits these so files
# created inside containers are owned by your host user.
# Run `id` to find your UID/GID.
HOST_USER=youruser
HOST_UID=1000
HOST_GID=1000
# CORS origin — set to your frontend's public URL (default: *)
# CORS_ORIGIN=https://meeseeks.example.com
# Frontend runtime config — API URL the browser should talk to.
# Leave commented when using the nginx proxy (console proxies /api/).
# VITE_API_BASE_URL=https://meeseeks-api.example.com
# Frontend API key — should match MASTER_API_TOKEN
VITE_API_KEY=CHANGE_ME
# Project-specific MCP bearer tokens (if your .mcp.json files
# reference env vars like ${MY_TOKEN}, define them here)
# MY_MCP_BEARER_TOKEN=secret-token-here