-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
110 lines (97 loc) · 4.51 KB
/
.env.example
File metadata and controls
110 lines (97 loc) · 4.51 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
# ==============================================================================
# Laravel Docker Development Environment - 2025 Edition
# Versões: PHP 8.4, MySQL 9.1, PostgreSQL 17, Redis 8, Traefik 3.6
# ==============================================================================
# ==============================================================================
# Paths
# ==============================================================================
# Caminho para seus projetos Laravel (relativo a ~/docker-environment ou absoluto)
# Padrão: ~/projects
PROJECTS_PATH=~/projects
# UID/GID do usuário (execute: id -u && id -g)
# Using DOCKER_ prefix since UID/GID are readonly in bash
DOCKER_UID=1000
DOCKER_GID=1000
# ==============================================================================
# PHP & Xdebug
# ==============================================================================
# Habilitar Xdebug (true/false) - desabilitar para melhor performance
XDEBUG_ENABLED=true
# Modos: develop, debug, coverage, profile, trace (separados por vírgula)
XDEBUG_MODE=develop,debug
# ==============================================================================
# MySQL 9.1 (Innovation) / 8.4 (LTS)
# ==============================================================================
MYSQL_VERSION=9.1
MYSQL_PORT=3306
MYSQL_ROOT_PASSWORD=secret
MYSQL_DATABASE=laravel
MYSQL_USER=laravel
MYSQL_PASSWORD=secret
# ==============================================================================
# PostgreSQL 17
# ==============================================================================
POSTGRES_PORT=5432
POSTGRES_DATABASE=laravel
POSTGRES_USER=laravel
POSTGRES_PASSWORD=secret
# ==============================================================================
# Redis 8
# ==============================================================================
REDIS_PORT=6379
# ==============================================================================
# MinIO (S3-Compatible Storage)
# ==============================================================================
MINIO_API_PORT=9000
MINIO_CONSOLE_PORT=9001
MINIO_ROOT_USER=minio
MINIO_ROOT_PASSWORD=minio123
MINIO_BUCKET=laravel
# ==============================================================================
# Mailpit (Email Testing)
# ==============================================================================
MAILPIT_WEB_PORT=8025
MAILPIT_SMTP_PORT=1025
# ==============================================================================
# RTMP Server (Optional - use profile 'streaming')
# Start with: docker-compose --profile streaming up -d
# ==============================================================================
RTMP_PORT=1935
RTMP_HLS_PORT=8088
# ==============================================================================
# Whisper ASR - Speech-to-Text API (OpenAI-compatible)
# API: http://whisper:8000/v1/audio/transcriptions (internal)
# API: http://localhost:9501/v1/audio/transcriptions (external)
# Docs: http://localhost:9501/docs
# ==============================================================================
WHISPER_PORT=9501
# Whisper model: Systran/faster-whisper-tiny, base, small, medium, large-v3
WHISPER_MODEL=Systran/faster-whisper-base
# ==============================================================================
# Laravel Reverb - Standalone WebSocket Server (Multi-App)
# Serves all projects simultaneously - each connects with own credentials
# Starts automatically with docker-local
# Accessible via: wss://ws.localhost (Traefik) or localhost:6001 (direct)
#
# App Management:
# docker-local reverb app:add <name> - Register a new app
# docker-local reverb app:list - List all apps
# docker-local reverb app:show <name> - Show app credentials
# docker-local reverb app:remove <name> - Remove an app
# ==============================================================================
# Server port (external) - where Reverb listens for connections
REVERB_PORT=6001
# Horizontal scaling via Redis (set to true for multi-server setups)
REVERB_SCALING_ENABLED=false
# ==============================================================================
# LiveKit - WebRTC SFU Server for Video Conferencing
# API: http://livekit:7880 (internal) / http://localhost:7880 (external)
# Dashboard: https://livekit.localhost (via Traefik)
# Documentation: https://docs.livekit.io
# ==============================================================================
LIVEKIT_PORT=7880
LIVEKIT_RTC_TCP_PORT=7881
LIVEKIT_UDP_START=50000
LIVEKIT_UDP_END=50100
LIVEKIT_API_KEY=devkey
LIVEKIT_API_SECRET=secret