mirror of
https://github.com/Dokploy/dokploy.git
synced 2026-06-27 18:15:23 +02:00
- Implemented `HandleSchedules` component for creating and updating schedules with validation. - Added `ShowSchedules` component to display a list of schedules with options to edit and delete. - Created API routes for schedule management including create, update, delete, and list functionalities. - Defined the `schedule` table schema in the database with necessary fields and relationships. - Integrated schedule management into the application service dashboard, allowing users to manage schedules directly from the UI.
35 lines
935 B
TypeScript
35 lines
935 B
TypeScript
export * from "./application";
|
|
export * from "./postgres";
|
|
export * from "./user";
|
|
export * from "./project";
|
|
export * from "./domain";
|
|
export * from "./mariadb";
|
|
export * from "./mongo";
|
|
export * from "./mysql";
|
|
export * from "./backups";
|
|
export * from "./destination";
|
|
export * from "./deployment";
|
|
export * from "./mount";
|
|
export * from "./certificate";
|
|
export * from "./session";
|
|
export * from "./redirects";
|
|
export * from "./security";
|
|
export * from "./port";
|
|
export * from "./redis";
|
|
export * from "./shared";
|
|
export * from "./compose";
|
|
export * from "./registry";
|
|
export * from "./notification";
|
|
export * from "./ssh-key";
|
|
export * from "./git-provider";
|
|
export * from "./bitbucket";
|
|
export * from "./github";
|
|
export * from "./gitlab";
|
|
export * from "./gitea";
|
|
export * from "./server";
|
|
export * from "./utils";
|
|
export * from "./preview-deployments";
|
|
export * from "./ai";
|
|
export * from "./account";
|
|
export * from "./schedule";
|