mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-06-16 02:55:03 +00:00
feat: add support for overriding default emoji in env
This commit is contained in:
parent
00f9b9f814
commit
efaa12192c
3 changed files with 8 additions and 2 deletions
|
@ -39,6 +39,9 @@ const envType = z.object({
|
|||
PHISHERMAN_API_KEY: z.string().optional(),
|
||||
FISHFISH_API_KEY: z.string().optional(),
|
||||
|
||||
DEFAULT_SUCCESS_EMOJI: z.string().optional().default("✅"),
|
||||
DEFAULT_ERROR_EMOJI: z.string().optional().default("❌"),
|
||||
|
||||
DB_HOST: z.string().optional(),
|
||||
DB_PORT: z.preprocess((v) => Number(v), z.number()).optional(),
|
||||
DB_USER: z.string().optional(),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue