-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
51 lines (44 loc) · 2.06 KB
/
.env.example
File metadata and controls
51 lines (44 loc) · 2.06 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
# Runtm Environment Configuration
# Copy this file to .env in the project root and fill in your values
#
# For local development, this file is automatically loaded by:
# - Docker Compose (via env_file directive)
# - Python code (via runtm_shared.env module)
#
# Usage:
# cp .env.example .env
# # Edit .env with your values
# docker compose -f infra/docker-compose.yml up
# ============================================================================
# API Authentication
# ============================================================================
RUNTM_API_TOKEN=dev-token-change-in-production
# ============================================================================
# Database
# ============================================================================
DATABASE_URL=postgresql://runtm:runtm@postgres:5432/runtm
# ============================================================================
# Redis
# ============================================================================
REDIS_URL=redis://redis:6379
# ============================================================================
# Fly.io Configuration (required for deployments)
# ============================================================================
# IMPORTANT: Use a Personal Access Token from https://fly.io/user/personal_access_tokens
# Personal access tokens work for both Machines API and Logs API
FLY_API_TOKEN=your-fly-personal-access-token-here
FLY_ORG=personal
# ============================================================================
# Storage
# ============================================================================
ARTIFACT_STORAGE_PATH=/artifacts
# ============================================================================
# Auth Mode
# ============================================================================
# Options: single_tenant, multi_tenant
AUTH_MODE=single_tenant
# ============================================================================
# Debug Mode
# ============================================================================
# Set to true for local development
DEBUG=true