2022-04-14 02:02:05 +02:00
|
|
|
import { Alarm } from '@vicons/tabler';
|
2022-06-01 23:52:21 +02:00
|
|
|
import { defineTool } from '../tool';
|
2024-02-01 14:05:54 +01:00
|
|
|
import { translate } from '@/plugins/i18n.plugin';
|
2022-04-14 02:02:05 +02:00
|
|
|
|
2022-06-01 23:52:21 +02:00
|
|
|
export const tool = defineTool({
|
2024-02-01 14:05:54 +01:00
|
|
|
name: translate('tools.crontab-generator.title'),
|
2022-04-14 02:02:05 +02:00
|
|
|
path: '/crontab-generator',
|
2024-02-01 14:05:54 +01:00
|
|
|
description: translate('tools.crontab-generator.description'),
|
2022-04-22 23:31:40 +02:00
|
|
|
keywords: [
|
|
|
|
'crontab',
|
|
|
|
'generator',
|
|
|
|
'cronjob',
|
|
|
|
'cron',
|
|
|
|
'schedule',
|
|
|
|
'parse',
|
|
|
|
'expression',
|
|
|
|
'year',
|
|
|
|
'month',
|
|
|
|
'week',
|
|
|
|
'day',
|
|
|
|
'minute',
|
|
|
|
'second',
|
2024-05-01 14:22:46 +02:00
|
|
|
'aws',
|
2022-04-22 23:31:40 +02:00
|
|
|
],
|
2022-04-14 02:02:05 +02:00
|
|
|
component: () => import('./crontab-generator.vue'),
|
|
|
|
icon: Alarm,
|
2022-06-01 23:52:21 +02:00
|
|
|
});
|