-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathseed.yaml
More file actions
65 lines (65 loc) · 1.5 KB
/
seed.yaml
File metadata and controls
65 lines (65 loc) · 1.5 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
spec_version: v1
schema:
name: example-app
description: Example application configuration schema
fields:
app.name:
type: string
description: Application display name
app.debug:
type: bool
description: Enable debug logging
features.dark_mode:
type: bool
description: Enable dark mode UI
features.beta_access:
type: bool
description: Allow access to beta features
server.rate_limit:
type: integer
description: Maximum requests per second
constraints:
minimum: 1
maximum: 10000
server.timeout:
type: duration
description: Request timeout
server.max_connections:
type: integer
description: Maximum concurrent connections
constraints:
minimum: 1
payments.fee_rate:
type: number
description: Transaction fee percentage (0-1)
constraints:
minimum: 0
maximum: 1
payments.currency:
type: string
description: Default currency code
constraints:
enum: [USD, EUR, GBP]
tenant:
name: acme-corp
config:
description: Initial example configuration
values:
app.name:
value: "Acme Corp App"
app.debug:
value: false
features.dark_mode:
value: true
features.beta_access:
value: false
server.rate_limit:
value: 100
server.timeout:
value: "30s"
server.max_connections:
value: 50
payments.fee_rate:
value: 0.025
payments.currency:
value: "USD"