Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .beads/.local_version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0.34.0
Binary file added .beads/beads.db
Binary file not shown.
7 changes: 7 additions & 0 deletions .beads/daemon.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"pid": 8024,
"parent_pid": 7988,
"database": "/home/oxtsotsi/Webrnds/DevFlow/.beads/beads.db",
"version": "0.34.0",
"started_at": "2025-12-24T05:32:47.425187425Z"
}
Comment on lines +1 to +7

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

This file appears to be a runtime lock file and contains a hardcoded, user-specific path (/home/oxtsotsi/...). Such files should not be committed to the repository. Please add .beads/ to your .gitignore file to prevent these files from being tracked.

61 changes: 61 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
# Automaker Project Configuration
# Copy this file to .env and configure your settings

# ============================================
# Beads UI Configuration (OPTIONAL)
# ============================================

# Path to the bd binary (optional, beads-ui usually auto-detects)
# Only needed if bd is not in your standard PATH
# BD_BIN=/home/oxtsotsi/.local/bin/bd

# Override runtime directory for beads-ui PID/logs (optional)
# Defaults to $XDG_RUNTIME_DIR/beads-ui or system temp dir
# BDUI_RUNTIME_DIR=/tmp/beads-ui

# Beads UI server bind address (default: 127.0.0.1)
# HOST=127.0.0.1

# Beads UI server port (default: 3000)
# Note: This may conflict with other services running on port 3000
# PORT=3000

# Enable debug logging for beads-ui (optional)
# DEBUG=beads-ui:*

# ============================================
# Automaker Server Configuration
# ============================================

# Your Anthropic API key for Claude models
ANTHROPIC_API_KEY=sk-ant-...

# API key for authenticating requests (leave empty to disable auth)
# If set, all API requests must include X-API-Key header
AUTOMAKER_API_KEY=

# Root directory for projects and file operations
# If set, users can only create/open projects and files within this directory
# Recommended for sandboxed deployments (Docker, restricted environments)
# Example: ALLOWED_ROOT_DIRECTORY=/projects
ALLOWED_ROOT_DIRECTORY=

# CORS origin - which domains can access the API
# Use "*" for development, set specific origin for production
CORS_ORIGIN=*

# Port to run the Automaker server on (default: 3008)
PORT=3008

# Data directory for sessions and metadata
DATA_DIR=./data

# Enable/disable terminal access (default: true)
TERMINAL_ENABLED=true

# Password to protect terminal access (leave empty for no password)
# If set, users must enter this password before accessing terminal
TERMINAL_PASSWORD=

# Enable request logging (default: false)
ENABLE_REQUEST_LOGGING=false
Loading