-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.docker
More file actions
80 lines (68 loc) · 1.43 KB
/
.env.docker
File metadata and controls
80 lines (68 loc) · 1.43 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
# MicroHelium Docker Environment Configuration
# Copy this to .env and adjust as needed
APP_NAME=MicroHelium
APP_ENV=local
APP_KEY=
APP_DEBUG=true
APP_TIMEZONE=UTC
APP_URL=http://localhost:8000
# Logging
LOG_CHANNEL=stack
LOG_STACK=single
LOG_DEPRECATIONS_CHANNEL=null
LOG_LEVEL=debug
# Database (Docker MySQL)
DB_CONNECTION=mysql
DB_HOST=db
DB_PORT=3306
DB_DATABASE=microhelium
DB_USERNAME=microhelium
DB_PASSWORD=secret
DB_ROOT_PASSWORD=rootsecret
# Redis (Docker)
REDIS_CLIENT=phpredis
REDIS_HOST=redis
REDIS_PASSWORD=null
REDIS_PORT=6379
# Cache & Session
CACHE_STORE=redis
SESSION_DRIVER=redis
SESSION_LIFETIME=120
SESSION_ENCRYPT=false
# Queue
QUEUE_CONNECTION=redis
# Mail (Mailpit for development)
MAIL_MAILER=smtp
MAIL_HOST=mailpit
MAIL_PORT=1025
MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_ENCRYPTION=null
MAIL_FROM_ADDRESS="noreply@microhelium.local"
MAIL_FROM_NAME="${APP_NAME}"
# Filesystem
FILESYSTEM_DISK=local
# Broadcasting
BROADCAST_CONNECTION=log
# Docker Ports
APP_PORT=8000
APP_SSL_PORT=8443
DB_PORT=3306
REDIS_PORT=6379
VITE_PORT=5173
PMA_PORT=8080
MAIL_PORT=1025
MAILPIT_UI_PORT=8025
# Auto-Judge Configuration
AUTOJUDGE_ENABLED=true
AUTOJUDGE_JAIL_PATH=/bocajail
AUTOJUDGE_SAFEEXEC_PATH=/usr/local/bin/safeexec
AUTOJUDGE_TIME_LIMIT=10
AUTOJUDGE_MEMORY_LIMIT=512
AUTOJUDGE_MAX_FILE_SIZE=100
AUTOJUDGE_OUTPUT_LIMIT=1024
AUTOJUDGE_COMPILE_TIMEOUT=30
AUTOJUDGE_USER=nobody
AUTOJUDGE_GROUP=nogroup
# Vite
VITE_APP_NAME="${APP_NAME}"