@stacksjs/config 0.50.0 → 0.58.28
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +31 -13
- package/package.json +29 -27
- package/src/config.ts +38 -0
- package/src/defaults.ts +460 -0
- package/src/helpers.ts +256 -0
- package/src/index.ts +2 -0
- package/src/overrides.ts +49 -0
- package/LICENSE.md +0 -21
- package/dist/index.d.ts +0 -204
- package/dist/index.mjs +0 -497
package/dist/index.mjs
DELETED
|
@@ -1,497 +0,0 @@
|
|
|
1
|
-
import { env as env$1 } from '@stacksjs/utils';
|
|
2
|
-
import { frameworkPath } from '@stacksjs/path';
|
|
3
|
-
|
|
4
|
-
const c = {
|
|
5
|
-
__proto__: null,
|
|
6
|
-
get app () { return app; },
|
|
7
|
-
get cache () { return cache; },
|
|
8
|
-
get config () { return config; },
|
|
9
|
-
get database () { return database; },
|
|
10
|
-
get debug () { return debug; },
|
|
11
|
-
get deploy () { return deploy; },
|
|
12
|
-
get determineDebugMode () { return determineDebugMode; },
|
|
13
|
-
get docs () { return docs$1; },
|
|
14
|
-
get env () { return env; },
|
|
15
|
-
get events () { return events; },
|
|
16
|
-
get git () { return git; },
|
|
17
|
-
get hashing () { return hashing; },
|
|
18
|
-
get library () { return library; },
|
|
19
|
-
get notification () { return notification; },
|
|
20
|
-
get searchEngine () { return searchEngine; },
|
|
21
|
-
get services () { return services; },
|
|
22
|
-
get storage () { return storage; },
|
|
23
|
-
get ui () { return ui; }
|
|
24
|
-
};
|
|
25
|
-
|
|
26
|
-
function config(key, fallback) {
|
|
27
|
-
return key ? c[key] : fallback;
|
|
28
|
-
}
|
|
29
|
-
function env(key, fallback) {
|
|
30
|
-
return fallback;
|
|
31
|
-
}
|
|
32
|
-
function determineDebugMode(options) {
|
|
33
|
-
if (options?.debug === true)
|
|
34
|
-
return true;
|
|
35
|
-
if (app.debug === true)
|
|
36
|
-
return true;
|
|
37
|
-
return false;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
const app = {
|
|
41
|
-
name: env$1("APP_NAME", "Stacks"),
|
|
42
|
-
env: env$1("APP_ENV", "local"),
|
|
43
|
-
key: env$1("APP_KEY", ""),
|
|
44
|
-
debug: env$1("APP_DEBUG", false),
|
|
45
|
-
url: env$1("APP_URL", "https://localhost"),
|
|
46
|
-
port: env$1("APP_PORT", 3333),
|
|
47
|
-
timezone: "UTC",
|
|
48
|
-
locale: "en",
|
|
49
|
-
fallbackLocale: "en",
|
|
50
|
-
cipher: "aes-256-cbc",
|
|
51
|
-
editor: "vscode"
|
|
52
|
-
};
|
|
53
|
-
|
|
54
|
-
const cache = {
|
|
55
|
-
driver: env$1("CACHE_DRIVER", "redis"),
|
|
56
|
-
redis: {
|
|
57
|
-
connection: "cache",
|
|
58
|
-
host: env$1("REDIS_HOST", "127.0.0.1"),
|
|
59
|
-
port: env$1("REDIS_PORT", "6379")
|
|
60
|
-
},
|
|
61
|
-
memcached: {
|
|
62
|
-
persistent_id: env$1("MEMCACHED_PERSISTENT_ID", ""),
|
|
63
|
-
sasl: [
|
|
64
|
-
env$1("MEMCACHED_USERNAME", ""),
|
|
65
|
-
env$1("MEMCACHED_PASSWORD", "")
|
|
66
|
-
],
|
|
67
|
-
options: {
|
|
68
|
-
// Memcached::OPT_CONNECT_TIMEOUT => 2000,
|
|
69
|
-
},
|
|
70
|
-
servers: [{
|
|
71
|
-
host: env$1("MEMCACHED_HOST", "127.0.0.1"),
|
|
72
|
-
port: env$1("MEMCACHED_PORT", 11211),
|
|
73
|
-
weight: 100
|
|
74
|
-
}]
|
|
75
|
-
},
|
|
76
|
-
dynamodb: {
|
|
77
|
-
key: env$1("AWS_ACCESS_KEY_ID", ""),
|
|
78
|
-
secret: env$1("AWS_SECRET_ACCESS_KEY", ""),
|
|
79
|
-
region: env$1("AWS_DEFAULT_REGION", "us-east-1"),
|
|
80
|
-
table: env$1("DYNAMODB_CACHE_TABLE", "cache"),
|
|
81
|
-
endpoint: env$1("DYNAMODB_ENDPOINT", "")
|
|
82
|
-
}
|
|
83
|
-
};
|
|
84
|
-
|
|
85
|
-
const database = {
|
|
86
|
-
driver: "planetscale"
|
|
87
|
-
};
|
|
88
|
-
|
|
89
|
-
const debug = {
|
|
90
|
-
enabled: true,
|
|
91
|
-
host: "localhost",
|
|
92
|
-
port: 23517
|
|
93
|
-
};
|
|
94
|
-
|
|
95
|
-
const deploy = {
|
|
96
|
-
driver: "netlify"
|
|
97
|
-
};
|
|
98
|
-
|
|
99
|
-
const events = {
|
|
100
|
-
// 'user:registered': User,
|
|
101
|
-
};
|
|
102
|
-
|
|
103
|
-
const services = {
|
|
104
|
-
algolia: {
|
|
105
|
-
appId: "",
|
|
106
|
-
apiKey: "",
|
|
107
|
-
indexName: ""
|
|
108
|
-
},
|
|
109
|
-
meilisearch: {
|
|
110
|
-
appId: "",
|
|
111
|
-
apiKey: "",
|
|
112
|
-
indexName: ""
|
|
113
|
-
},
|
|
114
|
-
stripe: {
|
|
115
|
-
appId: "",
|
|
116
|
-
apiKey: ""
|
|
117
|
-
},
|
|
118
|
-
planetscale: {
|
|
119
|
-
appId: "",
|
|
120
|
-
apiKey: ""
|
|
121
|
-
},
|
|
122
|
-
supabase: {
|
|
123
|
-
appId: "",
|
|
124
|
-
apiKey: ""
|
|
125
|
-
},
|
|
126
|
-
aws: {
|
|
127
|
-
appId: "",
|
|
128
|
-
apiKey: ""
|
|
129
|
-
},
|
|
130
|
-
novu: {
|
|
131
|
-
key: env$1("NOVU_API_KEY", "test-key")
|
|
132
|
-
}
|
|
133
|
-
};
|
|
134
|
-
|
|
135
|
-
const docs = {
|
|
136
|
-
outDir: frameworkPath("docs/dist"),
|
|
137
|
-
lang: "en-US",
|
|
138
|
-
title: "Stacks",
|
|
139
|
-
description: "Composability-First. UI/FX Framework.",
|
|
140
|
-
lastUpdated: true,
|
|
141
|
-
themeConfig: {
|
|
142
|
-
nav: nav(),
|
|
143
|
-
sidebar: {
|
|
144
|
-
"/guide/": sidebarGuide()
|
|
145
|
-
},
|
|
146
|
-
editLink: {
|
|
147
|
-
pattern: "https://github.com/stacksjs/stacks/edit/main/apps/docs/docs/:path",
|
|
148
|
-
text: "Edit this page on GitHub"
|
|
149
|
-
},
|
|
150
|
-
socialLinks: [
|
|
151
|
-
{ icon: "twitter", link: "https://twitter.com/stacksjs" },
|
|
152
|
-
{ icon: "github", link: "https://github.com/stacksjs/stacks" },
|
|
153
|
-
{ icon: "discord", link: "https://twitter.com/stacksjs" }
|
|
154
|
-
],
|
|
155
|
-
footer: {
|
|
156
|
-
message: "Released under the MIT License.",
|
|
157
|
-
copyright: "Copyright \xA9 2022-present Open Web Foundation"
|
|
158
|
-
},
|
|
159
|
-
algolia: services.algolia,
|
|
160
|
-
carbonAds: {
|
|
161
|
-
code: "",
|
|
162
|
-
placement: ""
|
|
163
|
-
}
|
|
164
|
-
}
|
|
165
|
-
};
|
|
166
|
-
function nav() {
|
|
167
|
-
return [
|
|
168
|
-
{ text: "Config", link: "/config", activeMatch: "/config" },
|
|
169
|
-
{
|
|
170
|
-
text: "Changelog",
|
|
171
|
-
link: "https://github.com/stacksjs/stacks/blob/main/CHANGELOG.md"
|
|
172
|
-
},
|
|
173
|
-
{ text: "Blog", link: "https://updates.ow3.org" }
|
|
174
|
-
];
|
|
175
|
-
}
|
|
176
|
-
function sidebarGuide() {
|
|
177
|
-
return [
|
|
178
|
-
{
|
|
179
|
-
text: "Introduction",
|
|
180
|
-
collapsible: true,
|
|
181
|
-
items: [
|
|
182
|
-
{ text: "What is Stacks?", link: "/guide/what-is-stacks" },
|
|
183
|
-
{ text: "Getting Started", link: "/guide/getting-started" },
|
|
184
|
-
{ text: "Configuration", link: "/guide/config" }
|
|
185
|
-
]
|
|
186
|
-
},
|
|
187
|
-
{
|
|
188
|
-
text: "Digging Deeper",
|
|
189
|
-
collapsible: true,
|
|
190
|
-
items: [
|
|
191
|
-
{ text: "How To?", link: "/guide/stacks" },
|
|
192
|
-
{ text: "Workflows / CI", link: "/guide/ci" },
|
|
193
|
-
{ text: "VS Code", link: "/guide/vs-code" },
|
|
194
|
-
{ text: "Apps", link: "/guide/apps" },
|
|
195
|
-
{ text: "Examples", link: "/guide/examples" },
|
|
196
|
-
{ text: "Packages", link: "/guide/packages" },
|
|
197
|
-
{ text: "Testing", link: "/guide/testing" },
|
|
198
|
-
{ text: "Single File Components", link: "/guide/sfcs" }
|
|
199
|
-
]
|
|
200
|
-
},
|
|
201
|
-
{
|
|
202
|
-
text: "Starters",
|
|
203
|
-
collapsible: true,
|
|
204
|
-
items: [
|
|
205
|
-
{ text: "Vue Starter", link: "/starter/vue" },
|
|
206
|
-
{ text: "Web Component Starter", link: "/starter/web-components" },
|
|
207
|
-
{ text: "Composable Starter", link: "/starter/web-components" },
|
|
208
|
-
{ text: "TypeScript Starter", link: "/starter/web-components" }
|
|
209
|
-
]
|
|
210
|
-
}
|
|
211
|
-
];
|
|
212
|
-
}
|
|
213
|
-
|
|
214
|
-
const docs$1 = {
|
|
215
|
-
__proto__: null,
|
|
216
|
-
default: docs
|
|
217
|
-
};
|
|
218
|
-
|
|
219
|
-
const git = {
|
|
220
|
-
hooks: {
|
|
221
|
-
"pre-commit": "lint-staged"
|
|
222
|
-
},
|
|
223
|
-
scopes: [
|
|
224
|
-
"",
|
|
225
|
-
"ci",
|
|
226
|
-
"deps",
|
|
227
|
-
"dx",
|
|
228
|
-
"release",
|
|
229
|
-
"docs",
|
|
230
|
-
"test",
|
|
231
|
-
"core",
|
|
232
|
-
"actions",
|
|
233
|
-
"arrays",
|
|
234
|
-
"auth",
|
|
235
|
-
"build",
|
|
236
|
-
"cache",
|
|
237
|
-
"cli",
|
|
238
|
-
"cloud",
|
|
239
|
-
"collections",
|
|
240
|
-
"config",
|
|
241
|
-
"database",
|
|
242
|
-
"datetime",
|
|
243
|
-
"docs",
|
|
244
|
-
"errors",
|
|
245
|
-
"git",
|
|
246
|
-
"lint",
|
|
247
|
-
"x-ray",
|
|
248
|
-
"modules",
|
|
249
|
-
"notifications",
|
|
250
|
-
"objects",
|
|
251
|
-
"path",
|
|
252
|
-
"realtime",
|
|
253
|
-
"router",
|
|
254
|
-
"buddy",
|
|
255
|
-
"security",
|
|
256
|
-
"server",
|
|
257
|
-
"storage",
|
|
258
|
-
"strings",
|
|
259
|
-
"tests",
|
|
260
|
-
"types",
|
|
261
|
-
"ui",
|
|
262
|
-
"utils"
|
|
263
|
-
],
|
|
264
|
-
messages: {
|
|
265
|
-
type: "Select the type of change that you're committing:",
|
|
266
|
-
scope: "Select the SCOPE of this change (optional):",
|
|
267
|
-
customScope: "Select the SCOPE of this change:",
|
|
268
|
-
subject: "Write a SHORT, IMPERATIVE tense description of the change:\n",
|
|
269
|
-
body: 'Provide a LONGER description of the change (optional). Use "|" to break new line:\n',
|
|
270
|
-
breaking: 'List any BREAKING CHANGES (optional). Use "|" to break new line:\n',
|
|
271
|
-
footerPrefixesSelect: "Select the ISSUES type of the change list by this change (optional):",
|
|
272
|
-
customFooterPrefixes: "Input ISSUES prefix:",
|
|
273
|
-
footer: "List any ISSUES by this change. E.g.: #31, #34:\n",
|
|
274
|
-
confirmCommit: "Are you sure you want to proceed with the commit above?"
|
|
275
|
-
},
|
|
276
|
-
types: [
|
|
277
|
-
{ value: "feat", name: "feat: \u2728 A new feature", emoji: ":sparkles:" },
|
|
278
|
-
{ value: "fix", name: "fix: \u{1F41B} A bug fix", emoji: ":bug:" },
|
|
279
|
-
{ value: "docs", name: "docs: \u{1F4DD} Documentation only changes", emoji: ":memo:" },
|
|
280
|
-
{ value: "style", name: "style: \u{1F484} Changes that do not affect the meaning of the code", emoji: ":lipstick:" },
|
|
281
|
-
{ value: "refactor", name: "refactor: \u267B\uFE0F A code change that neither fixes a bug nor adds a feature", emoji: ":recycle:" },
|
|
282
|
-
{ value: "perf", name: "perf: \u26A1\uFE0F A code change that improves performance", emoji: ":zap:" },
|
|
283
|
-
{ value: "test", name: "test: \u2705 Adding missing tests or adjusting existing tests", emoji: ":white_check_mark:" },
|
|
284
|
-
{ value: "build", name: "build: \u{1F4E6}\uFE0F Changes that affect the build system or external dependencies", emoji: ":package:" },
|
|
285
|
-
{ value: "ci", name: "ci: \u{1F3A1} Changes to our CI configuration files and scripts", emoji: ":ferris_wheel:" },
|
|
286
|
-
{ value: "chore", name: "chore: \u{1F528} Other changes that don't modify src or test files", emoji: ":hammer:" },
|
|
287
|
-
{ value: "revert", name: "revert: \u23EA\uFE0F Reverts a previous commit", emoji: ":rewind:" }
|
|
288
|
-
]
|
|
289
|
-
};
|
|
290
|
-
|
|
291
|
-
const hashing = {
|
|
292
|
-
driver: "bcrypt",
|
|
293
|
-
bcrypt: {
|
|
294
|
-
rounds: 10
|
|
295
|
-
},
|
|
296
|
-
argon: {
|
|
297
|
-
memory: 65536,
|
|
298
|
-
threads: 1,
|
|
299
|
-
time: 1
|
|
300
|
-
}
|
|
301
|
-
};
|
|
302
|
-
|
|
303
|
-
const library = {
|
|
304
|
-
name: "hello-world",
|
|
305
|
-
parentName: "@stacksjs",
|
|
306
|
-
repository: "stacksjs/stacks",
|
|
307
|
-
license: "MIT",
|
|
308
|
-
author: "Chris Breuer",
|
|
309
|
-
contributors: ["Chris Breuer <chris@ow3.org>"],
|
|
310
|
-
defaultLanguage: "en",
|
|
311
|
-
vueComponents: {
|
|
312
|
-
name: "hello-world-vue",
|
|
313
|
-
description: "Your Vue component library description",
|
|
314
|
-
keywords: ["component", "library", "vue", "vite", "typescript", "javascript"],
|
|
315
|
-
tags: [{
|
|
316
|
-
name: ["HelloWorld", "AppHelloWorld"],
|
|
317
|
-
description: "The Hello World custom element, built via this framework.",
|
|
318
|
-
attributes: [{
|
|
319
|
-
name: "greeting",
|
|
320
|
-
description: "The greeting."
|
|
321
|
-
}]
|
|
322
|
-
}]
|
|
323
|
-
},
|
|
324
|
-
webComponents: {
|
|
325
|
-
name: "hello-world-elements",
|
|
326
|
-
description: "Your framework agnostic web component library description.",
|
|
327
|
-
keywords: ["custom-elements", "web-components", "library", "framework-agnostic", "typescript", "javascript"],
|
|
328
|
-
tags: [{
|
|
329
|
-
name: ["HelloWorld", "AppHelloWorld"],
|
|
330
|
-
description: "The Hello World custom element, built via this framework.",
|
|
331
|
-
attributes: [{
|
|
332
|
-
name: "greeting",
|
|
333
|
-
description: "The greeting."
|
|
334
|
-
}]
|
|
335
|
-
}]
|
|
336
|
-
},
|
|
337
|
-
functions: {
|
|
338
|
-
name: "hello-world-fx",
|
|
339
|
-
description: "Your function library description.",
|
|
340
|
-
keywords: ["functions", "composables", "library", "typescript", "javascript"],
|
|
341
|
-
shouldBuildIife: false,
|
|
342
|
-
shouldGenerateSourcemap: false,
|
|
343
|
-
functions: [
|
|
344
|
-
"counter",
|
|
345
|
-
"dark"
|
|
346
|
-
]
|
|
347
|
-
}
|
|
348
|
-
};
|
|
349
|
-
|
|
350
|
-
const notification = {
|
|
351
|
-
type: env$1("NOTIFICATION_TYPE", "email"),
|
|
352
|
-
driver: env$1("NOTIFICATION_DRIVER", "sendgrid"),
|
|
353
|
-
email: {
|
|
354
|
-
purgeCSS: false,
|
|
355
|
-
sendgrid: {
|
|
356
|
-
key: env$1("SENDGRID_API_KEY", "test-value"),
|
|
357
|
-
from: env$1("SENDGRID_FROM", "test-value"),
|
|
358
|
-
senderName: env$1("SENDGRID_SENDER_NAME", "test-value")
|
|
359
|
-
},
|
|
360
|
-
emailjs: {
|
|
361
|
-
from: env$1("EMAILJS_FROM_EMAIL", "test-value"),
|
|
362
|
-
host: env$1("EMAILJS_HOST", "test-value"),
|
|
363
|
-
user: env$1("EMAILJS_USERNAME", "test-value"),
|
|
364
|
-
password: env$1("EMAILJS_PASSWORD", "test-value"),
|
|
365
|
-
port: env$1("EMAILJS_PORT", 40),
|
|
366
|
-
secure: env$1("EMAILJS_SECURE", true)
|
|
367
|
-
},
|
|
368
|
-
mailgun: {
|
|
369
|
-
key: env$1("MAILGUN_API_KEY", "test-value"),
|
|
370
|
-
domain: env$1("MAILGUN_DOMAIN", "test-value"),
|
|
371
|
-
username: env$1("MAILGUN_USERNAME", "test-value"),
|
|
372
|
-
from: env$1("MAILGUN_FROM", "test-value")
|
|
373
|
-
},
|
|
374
|
-
mailjet: {
|
|
375
|
-
key: env$1("MAILJET_API_KEY", "test-value"),
|
|
376
|
-
secret: env$1("MAILJET_API_SECRET", "test-value"),
|
|
377
|
-
from: env$1("MAILJET_FROM_EMAIL", "test-value")
|
|
378
|
-
},
|
|
379
|
-
mandrill: {
|
|
380
|
-
key: env$1("MANDRILL_API_KEY", "test-value"),
|
|
381
|
-
from: env$1("MANDRILL_EMAIL", "test-value")
|
|
382
|
-
},
|
|
383
|
-
netcore: {
|
|
384
|
-
key: env$1("NETCORE_API_KEY", "test-value"),
|
|
385
|
-
from: env$1("NETCORE_FROM", "test-value")
|
|
386
|
-
},
|
|
387
|
-
nodemailer: {
|
|
388
|
-
from: env$1("NODEMAILER_FROM_EMAIL", "test-value"),
|
|
389
|
-
host: env$1("NODEMAILER_HOST", "test-value"),
|
|
390
|
-
user: env$1("NODEMAILER_USERNAME", "test-value"),
|
|
391
|
-
password: env$1("NODEMAILER_PASSWORD", "test-value"),
|
|
392
|
-
port: env$1("NODEMAILER_PORT", 40),
|
|
393
|
-
secure: env$1("NODEMAILER_SECURE", true)
|
|
394
|
-
},
|
|
395
|
-
postmark: {
|
|
396
|
-
key: env$1("POSTMARK_API_KEY", "test-value"),
|
|
397
|
-
from: env$1("POSTMARK_FROM", "test-value")
|
|
398
|
-
},
|
|
399
|
-
ses: {
|
|
400
|
-
region: env$1("SES_REGION", "test-value"),
|
|
401
|
-
key: env$1("SES_ACCESS_KEY_ID", "test-value"),
|
|
402
|
-
secret: env$1("SES_SECRET_ACCESS_KEY", "test-value"),
|
|
403
|
-
from: env$1("SES_FROM", "test-value")
|
|
404
|
-
}
|
|
405
|
-
},
|
|
406
|
-
sms: {
|
|
407
|
-
twilio: {
|
|
408
|
-
sid: env$1("TWILIO_ACCOUNT_SID", "ACTEST"),
|
|
409
|
-
authToken: env$1("TWILIO_AUTH_TOKEN", "test-value"),
|
|
410
|
-
from: env$1("TWILIO_FROM_NUMBER", "test-value"),
|
|
411
|
-
to: env$1("TWILIO_TO_NUMBER", "test-value")
|
|
412
|
-
},
|
|
413
|
-
nexmo: {
|
|
414
|
-
key: env$1("VONAGE_API_KEY", "test-value"),
|
|
415
|
-
secret: env$1("VONAGE_API_SECRET", "test-value"),
|
|
416
|
-
from: env$1("VONAGE_FROM_NUMBER", "test-value")
|
|
417
|
-
},
|
|
418
|
-
gupshup: {
|
|
419
|
-
user: env$1("GUPSHUP_USER_ID", "test-value"),
|
|
420
|
-
password: env$1("GUPSHUP_PASSWORD", "test-value")
|
|
421
|
-
},
|
|
422
|
-
plivo: {
|
|
423
|
-
sid: env$1("PLIVO_ACCOUNT_ID", "test-value"),
|
|
424
|
-
authToken: env$1("PLIVO_AUTH_TOKEN", "test-value"),
|
|
425
|
-
from: env$1("PLIVO_FROM_NUMBER", "test-value")
|
|
426
|
-
},
|
|
427
|
-
sms77: {
|
|
428
|
-
key: env$1("SMS77_API_KEY", "test-value"),
|
|
429
|
-
from: env$1("SMS77_FROM", "test-value")
|
|
430
|
-
},
|
|
431
|
-
sns: {
|
|
432
|
-
region: env$1("SNS_REGION", "test-value"),
|
|
433
|
-
key: env$1("SNS_ACCESS_KEY_ID", "test-value"),
|
|
434
|
-
secret: env$1("SNS_SECRET_ACCESS_KEY", "test-value")
|
|
435
|
-
},
|
|
436
|
-
telnyx: {
|
|
437
|
-
key: env$1("TELNYX_API_KEY", "test-value"),
|
|
438
|
-
messageProfileId: env$1("TELNYX_MESSAGE_PROFILE_ID", "test-value"),
|
|
439
|
-
from: env$1("TELNYX_FROM", "test-value")
|
|
440
|
-
},
|
|
441
|
-
termii: {
|
|
442
|
-
key: env$1("TERMII_API_KEY", "test-value"),
|
|
443
|
-
from: env$1("TERMII_SENDER", "test-value")
|
|
444
|
-
}
|
|
445
|
-
},
|
|
446
|
-
chat: {
|
|
447
|
-
slack: {
|
|
448
|
-
appId: env$1("SLACK_APPLICATION_ID", "test-value"),
|
|
449
|
-
clientId: env$1("SLACK_CLIENT_ID", "test-value"),
|
|
450
|
-
secret: env$1("SLACK_SECRET_KEY", "test-value")
|
|
451
|
-
}
|
|
452
|
-
// discord: {},
|
|
453
|
-
}
|
|
454
|
-
};
|
|
455
|
-
|
|
456
|
-
const searchEngine = {
|
|
457
|
-
driver: "meilisearch",
|
|
458
|
-
meilisearch: {
|
|
459
|
-
host: "",
|
|
460
|
-
apiKey: ""
|
|
461
|
-
}
|
|
462
|
-
};
|
|
463
|
-
|
|
464
|
-
const storage = {
|
|
465
|
-
driver: "s3"
|
|
466
|
-
};
|
|
467
|
-
|
|
468
|
-
const ui = {
|
|
469
|
-
shortcuts: [
|
|
470
|
-
["btn", "inline-flex items-center px-4 py-2 ml-2 border border-transparent shadow-sm text-base font-medium rounded-md text-white bg-indigo-600 hover:bg-indigo-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 cursor-pointer"]
|
|
471
|
-
],
|
|
472
|
-
safelist: "prose prose-sm m-auto text-left",
|
|
473
|
-
trigger: ":stx:",
|
|
474
|
-
classPrefix: "stx-",
|
|
475
|
-
reset: "tailwind",
|
|
476
|
-
icons: ["heroicon-outline", "heroicon-solid"],
|
|
477
|
-
fonts: {
|
|
478
|
-
email: {
|
|
479
|
-
title: "Mona",
|
|
480
|
-
text: "Hubot"
|
|
481
|
-
},
|
|
482
|
-
desktop: {
|
|
483
|
-
title: "Mona",
|
|
484
|
-
text: "Hubot"
|
|
485
|
-
},
|
|
486
|
-
mobile: {
|
|
487
|
-
title: "Mona",
|
|
488
|
-
text: "Hubot"
|
|
489
|
-
},
|
|
490
|
-
web: {
|
|
491
|
-
title: "Mona",
|
|
492
|
-
text: "Hubot"
|
|
493
|
-
}
|
|
494
|
-
}
|
|
495
|
-
};
|
|
496
|
-
|
|
497
|
-
export { app, cache, config, database, debug, deploy, determineDebugMode, docs$1 as docs, env, events, git, hashing, library, notification, searchEngine, services, storage, ui };
|