2022-04-14 02:02:05 +02:00
|
|
|
import { Alarm } from '@vicons/tabler';
|
2022-05-25 23:20:51 +02:00
|
|
|
import type { ITool } from '../tool';
|
2022-04-14 02:02:05 +02:00
|
|
|
|
|
|
|
export const tool: ITool = {
|
|
|
|
name: 'Crontab generator',
|
|
|
|
path: '/crontab-generator',
|
|
|
|
description: 'Validate and generate crontab and get the human readable description of the cron schedule.',
|
2022-04-22 23:31:40 +02:00
|
|
|
keywords: [
|
|
|
|
'crontab',
|
|
|
|
'generator',
|
|
|
|
'cronjob',
|
|
|
|
'cron',
|
|
|
|
'schedule',
|
|
|
|
'parse',
|
|
|
|
'expression',
|
|
|
|
'year',
|
|
|
|
'month',
|
|
|
|
'week',
|
|
|
|
'day',
|
|
|
|
'minute',
|
|
|
|
'second',
|
|
|
|
],
|
2022-04-14 02:02:05 +02:00
|
|
|
component: () => import('./crontab-generator.vue'),
|
|
|
|
icon: Alarm,
|
|
|
|
};
|