- Added Telegraf dependency to handle Telegram bot interactions. - Updated order lifecycle methods to send notifications upon order creation and updates. - Refactored datetime handling to use a consistent timezone. - Removed unused utility functions to streamline codebase.
9 lines
176 B
TypeScript
9 lines
176 B
TypeScript
export default ({ env }) => ({
|
|
host: env('HOST', '0.0.0.0'),
|
|
port: env.int('PORT', 1337),
|
|
bot_token: env('BOT_TOKEN'),
|
|
app: {
|
|
keys: env.array('APP_KEYS'),
|
|
},
|
|
});
|