-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathappsettings.Development.json
More file actions
74 lines (74 loc) · 2.03 KB
/
Copy pathappsettings.Development.json
File metadata and controls
74 lines (74 loc) · 2.03 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
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"Postgres": {
"ConnectionString": "Host=localhost;Port=5432;Database=sol;Username=sol;Password=sol_dev_password",
"RunMigrationsOnStartup": true
},
"Redis": {
"Configuration": "localhost:6380",
"InstanceName": "sol:"
},
"RabbitMq": {
"HostName": "localhost",
"Port": 5673,
"UserName": "sol",
"Password": "sol_dev_password",
"VirtualHost": "/",
"Exchange": "sol.events",
"QueueName": "sol.events.api",
"PrefetchCount": 16,
"RoutingKeys": [ "device.#" ]
},
"Realtime": {
"Backplane": "None"
},
"DeviceIdentity": {
"Pepper": "dev-only-pepper-do-not-use-in-production",
"SignalVersion": 1,
"CoarseWindowHours": 24,
"MaxCoarseFanout": 5,
"CookieName": "sol_did",
"CookieMaxAgeDays": 730
},
"Authentication": {
"PublicOrigin": "http://localhost:3000",
"SessionCookieName": "sol_session",
"SessionMaxAgeDays": 30,
"OAuthTransactionMinutes": 10,
"GitHub": {
"Enabled": false,
"ClientId": "",
"ClientSecret": "",
"Scope": "read:user user:email"
}
},
"Mcp": {
"AllowLoopbackHttp": true,
"RequestTimeoutSeconds": 30,
"MaxResponseBytes": 1048576
},
"Skills": {
"SandboxEnabled": false,
"Root": "./storage/skills",
"MaxUploadBytes": 26214400,
"MaxExtractedBytes": 104857600,
"MaxEntries": 1000,
"OpenSandboxDomain": "localhost:8090",
"OpenSandboxApiKey": "",
"OpenSandboxImage": "opensandbox/code-interpreter:v1.1.0",
"RunnerTimeoutSeconds": 30,
"RunnerMaxOutputBytes": 262144,
"RunnerMaxPackageBytes": 26214400
},
"Ai": {
"//EncryptionKey": "Development only. Generate a real one with `openssl rand -base64 32` and keep it out of source control — rotating it makes every stored API key undecryptable.",
"EncryptionKey": "c29sLWRldi1rZXktbm90LWZvci1wcm9kdWN0aW9uISE=",
"AssetRoot": "./storage/assets",
"RequestTimeoutSeconds": 1200
}
}