-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlerees.config.yml
More file actions
180 lines (158 loc) · 4 KB
/
lerees.config.yml
File metadata and controls
180 lines (158 loc) · 4 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
# lerees.config.yml
# Konfigurasi utama lerees (local dev dashboard).
# Fokus: LOCAL ONLY. Hindari memasukkan secrets sensitif secara plain di sini.
project:
name: "my-app"
timezone: "Asia/Jakarta"
# =========================
# SERVICES (health checks)
# =========================
services:
- name: "api"
url: "http://localhost:3000"
health:
path: "/health"
intervalMs: 5000
timeoutMs: 1500
- name: "frontend"
url: "http://localhost:3000"
health:
path: "/" # kalau tidak punya /health
intervalMs: 8000
timeoutMs: 1500
- name: "worker"
url: "http://localhost:4001"
health:
path: "/health"
intervalMs: 8000
timeoutMs: 1500
# =========================
# LOG SOURCES
# type: file | docker | command
# =========================
logs:
# Tail file logs
- name: "api-file-log"
type: "file"
path: "./logs/api.log"
# optional:
maxLines: 500
rateLimitPerSec: 50
# Docker logs (pastikan container name sesuai)
- name: "api-docker-log"
type: "docker"
container: "myapp-api"
# optional:
tail: 200
follow: true
maxLines: 500
rateLimitPerSec: 50
# Command logs (gunakan untuk tool yang outputnya streaming)
# Catatan: command WAJIB lolos allowlist binary di bagian security.commandAllowlist
- name: "pnpm-dev-log"
type: "command"
command: "pnpm -C frontend dev"
maxLines: 300
rateLimitPerSec: 30
# =========================
# QUICK ACTIONS (safe commands)
# =========================
actions:
# Node/Prisma contoh
- id: "db-migrate"
label: "DB: Migrate"
command: "pnpm prisma migrate deploy"
confirm: true
timeoutMs: 60000
- id: "db-seed"
label: "DB: Seed"
command: "pnpm prisma db seed"
confirm: false
timeoutMs: 60000
# Docker compose contoh
- id: "docker-up"
label: "Docker: Up"
command: "docker compose up -d"
confirm: false
timeoutMs: 120000
- id: "docker-down"
label: "Docker: Down"
command: "docker compose down"
confirm: true
timeoutMs: 120000
# Go contoh
- id: "go-test"
label: "Go: Test"
command: "go test ./..."
confirm: false
timeoutMs: 120000
# Build frontend contoh
- id: "frontend-build"
label: "Frontend: Build"
command: "pnpm -C frontend build"
confirm: false
timeoutMs: 180000
# =========================
# ENV INSPECTOR
# =========================
env:
# Sumber env tambahan (opsional)
# - ".env"
# - ".env.local"
# - "backend/.env"
files:
- ".env"
- "frontend/.env.local"
- "backend/.env"
# Key yang ditampilkan (opsional). Jika kosong, tampilkan semua yang ada namun masked.
# includeKeys:
# - "DATABASE_URL"
# - "REDIS_URL"
# - "NEXT_PUBLIC_API_BASE"
# Key yang DISEMBUNYIKAN total (meski masked) - opsional
# excludeKeys:
# - "PRIVATE_KEY"
# =========================
# OPTIONAL: DB PING (fase lanjut / opsional MVP)
# =========================
db:
enabled: false
targets:
- name: "postgres"
type: "postgres"
urlEnvKey: "DATABASE_URL"
timeoutMs: 1500
- name: "redis"
type: "redis"
urlEnvKey: "REDIS_URL"
timeoutMs: 1500
# =========================
# SECURITY (Wajib)
# =========================
security:
# HANYA binary ini yang boleh dieksekusi untuk logs type=command & actions
# Tambahkan seperlunya (jangan kebanyakan).
commandAllowlist:
- "pnpm"
- "npm"
- "yarn"
- "bun"
- "docker"
- "go"
- "make"
- "cargo" # kalau perlu actions untuk Rust
# Pattern untuk masking env. Regex (best effort).
envMaskPatterns:
- ".*_SECRET.*"
- ".*_TOKEN.*"
- ".*_KEY.*"
- "PASSWORD"
- "DATABASE_URL" # sering mengandung password
- "REDIS_URL"
# Output limit untuk stdout/stderr ketika action dieksekusi
outputLimits:
maxBytes: 200000 # 200KB
maxLines: 2000
# Root folder boundary (opsional tapi disarankan)
# Jika diaktifkan, file logs hanya boleh berada di bawah folder ini.
projectRoot: "."