fromis_9/backend/src/config/bots.js

19 lines
428 B
JavaScript
Raw Normal View History

// 정적 봇 설정 (YouTube 봇은 DB에서 관리)
export default [
{
id: 'meilisearch-sync',
type: 'meilisearch',
name: 'Meilisearch 동기화',
cron: '0 0 * * *', // 매일 00시 전체 동기화
enabled: true,
},
{
id: 'x-fromis9',
type: 'x',
username: 'realfromis_9',
nitterUrl: process.env.NITTER_URL || 'http://nitter:8080',
cron: '*/1 * * * *',
enabled: true,
},
];