mirror of
https://github.com/Dokploy/dokploy
synced 2025-06-26 18:27:59 +00:00
- Added ShowEnv and ShowRollbackSettings components for displaying and configuring rollback settings. - Implemented ShowRollbacks component to list and manage rollbacks for applications. - Created rollback database schema and updated application schema to include rollback settings. - Added API routes for managing rollbacks, including fetching, creating, and deleting rollbacks. - Integrated rollback functionality into the application deployment process.
36 lines
964 B
TypeScript
36 lines
964 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";
|
|
export * from "./rollbacks";
|