mirror of
https://github.com/Dokploy/dokploy
synced 2025-06-26 18:27:59 +00:00
- Introduced a new component `ShowSchedulesLogs` to display logs for each schedule, allowing users to view deployment logs associated with their schedules. - Updated the `ShowSchedules` component to integrate the new logs feature, providing a button to access logs for each schedule. - Enhanced the `schedule` schema by adding an `appName` column to better identify applications associated with schedules. - Updated the API to support fetching deployments with their associated schedules, improving data retrieval for the frontend. - Implemented utility functions for managing schedule-related operations, including creating and removing deployments linked to schedules.
46 lines
911 B
TypeScript
46 lines
911 B
TypeScript
import { chmodSync, existsSync, mkdirSync } from "node:fs";
|
|
import { paths } from "../constants";
|
|
|
|
const createDirectoryIfNotExist = (dirPath: string) => {
|
|
if (!existsSync(dirPath)) {
|
|
mkdirSync(dirPath, { recursive: true });
|
|
console.log(`Directory created: ${dirPath}`);
|
|
}
|
|
};
|
|
|
|
export const setupDirectories = () => {
|
|
const {
|
|
APPLICATIONS_PATH,
|
|
BASE_PATH,
|
|
CERTIFICATES_PATH,
|
|
DYNAMIC_TRAEFIK_PATH,
|
|
LOGS_PATH,
|
|
MAIN_TRAEFIK_PATH,
|
|
MONITORING_PATH,
|
|
SSH_PATH,
|
|
SCHEDULES_PATH,
|
|
} = paths();
|
|
const directories = [
|
|
BASE_PATH,
|
|
MAIN_TRAEFIK_PATH,
|
|
DYNAMIC_TRAEFIK_PATH,
|
|
LOGS_PATH,
|
|
APPLICATIONS_PATH,
|
|
SSH_PATH,
|
|
CERTIFICATES_PATH,
|
|
MONITORING_PATH,
|
|
SCHEDULES_PATH,
|
|
];
|
|
|
|
for (const dir of directories) {
|
|
try {
|
|
createDirectoryIfNotExist(dir);
|
|
if (dir === SSH_PATH) {
|
|
chmodSync(SSH_PATH, "700");
|
|
}
|
|
} catch (error) {
|
|
console.log(error, " On path: ", dir);
|
|
}
|
|
}
|
|
};
|