forked from goranefbl/optimushq
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
28 lines (22 loc) · 869 Bytes
/
Copy path.env.example
File metadata and controls
28 lines (22 loc) · 869 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
# OptimusHQ Configuration
# Copy to .env and customize, or run ./setup.sh to generate automatically.
# Login credentials
AUTH_USER=admin
AUTH_PASS=changeme
# Docker group ID (run: stat -c '%g' /var/run/docker.sock)
DOCKER_GID=999
# Projects directory — absolute path, no tilde
# Defaults to $HOME/projects if unset
# HOST_PROJECTS_DIR=/home/youruser/projects
# Git identity for agent commits
GIT_AUTHOR_NAME=Your Name
GIT_AUTHOR_EMAIL=you@example.com
GIT_COMMITTER_NAME=Your Name
GIT_COMMITTER_EMAIL=you@example.com
# Agent resource limits (optional, shown are defaults)
# AGENT_MEMORY_LIMIT=4294967296 # 4 GB
# AGENT_CPU_LIMIT=2 # 2 CPU cores
# AGENT_PIDS_LIMIT=512
# Agent security (optional)
# AGENT_RUNTIME=sysbox-runc # Isolated Docker-in-Docker per agent
# AGENT_DOCKER_ACCESS=socket # Mount Docker socket into agents (less secure)