it-tools/src/tools/crontab-generator/index.ts
sharevb 48b4904cf1 fix(Cron Parser): handle aws, next executions and TZ
Handle AWS Cron syntax and distinguishe from standard syntax (fix #855)
Add show crontab next 5 execution times (taken from #1283)
Add Timezone handling: fix #261
2024-09-21 14:33:13 +02:00

27 lines
595 B
TypeScript

import { Alarm } from '@vicons/tabler';
import { defineTool } from '../tool';
import { translate } from '@/plugins/i18n.plugin';
export const tool = defineTool({
name: translate('tools.crontab-generator.title'),
path: '/crontab-generator',
description: translate('tools.crontab-generator.description'),
keywords: [
'crontab',
'generator',
'cronjob',
'cron',
'schedule',
'parse',
'expression',
'year',
'month',
'week',
'day',
'minute',
'second',
'aws',
],
component: () => import('./crontab-generator.vue'),
icon: Alarm,
});