mirror of
https://github.com/Portabase/portabase.git
synced 2026-07-14 11:16:13 +02:00
116 lines
4.3 KiB
TypeScript
116 lines
4.3 KiB
TypeScript
export const organizations = [
|
|
{
|
|
slug: "default",
|
|
name: "Default Organization",
|
|
createdAt: "2024-01-10T10:00:00.000Z",
|
|
projects: [],
|
|
},
|
|
{
|
|
slug: "tech-corp",
|
|
name: "Tech Corp",
|
|
createdAt: "2024-01-10T10:00:00.000Z",
|
|
projects: [],
|
|
},
|
|
{
|
|
slug: "design-studio",
|
|
name: "Design Studio",
|
|
createdAt: "2023-09-15T15:45:00.000Z",
|
|
projects: [],
|
|
},
|
|
];
|
|
|
|
export const projects = [
|
|
{
|
|
slug: "backend-system",
|
|
name: "Backend System",
|
|
createdAt: "2024-02-20T11:30:00.000Z",
|
|
organizationId: "org-1a2b3c4d",
|
|
databases: [],
|
|
},
|
|
{
|
|
slug: "creative-suite",
|
|
name: "Creative Suite",
|
|
createdAt: "2023-10-10T08:20:00.000Z",
|
|
organizationId: "org-2e3f4g5h",
|
|
databases: [],
|
|
},
|
|
];
|
|
|
|
export const databases = [
|
|
{
|
|
name: "Main Production DB",
|
|
dbms: "postgresql",
|
|
generatedId: "prod-db-1",
|
|
description: "Primary database for production environment",
|
|
backupPolicy: "daily",
|
|
createdAt: "2024-11-01T12:00:00.000Z",
|
|
agentId: "agent-1234",
|
|
lastContact: "2024-11-28T08:30:00.000Z",
|
|
projectId: "proj-789",
|
|
backups: [],
|
|
restorations: [],
|
|
},
|
|
{
|
|
name: "Staging DB",
|
|
dbms: "mysql",
|
|
generatedId: "staging-db-2",
|
|
description: "Database for testing and staging environment",
|
|
backupPolicy: "weekly",
|
|
createdAt: "2024-10-15T09:45:00.000Z",
|
|
agentId: "agent-5678",
|
|
lastContact: "2024-11-25T10:15:00.000Z",
|
|
projectId: null,
|
|
backups: [],
|
|
restorations: [],
|
|
},
|
|
{
|
|
name: "Development DB",
|
|
dbms: "mongodb",
|
|
generatedId: "dev-db-3",
|
|
description: null,
|
|
backupPolicy: null,
|
|
createdAt: "2024-09-20T16:20:00.000Z",
|
|
agentId: "agent-9012",
|
|
lastContact: null,
|
|
projectId: "proj-456",
|
|
backups: [],
|
|
restorations: [],
|
|
},
|
|
];
|
|
|
|
export const backups = [
|
|
{ createdAt: "2023-11-27T11:26:54.870914Z", status: "pending" },
|
|
{ createdAt: "2023-12-03T11:26:54.870927Z", status: "failed" },
|
|
{ createdAt: "2023-12-12T11:26:54.870937Z", status: "success" },
|
|
{ createdAt: "2023-11-23T11:26:54.870946Z", status: "processing" },
|
|
{ createdAt: "2023-12-09T11:26:54.870955Z", status: "pending" },
|
|
{ createdAt: "2023-11-29T11:26:54.870964Z", status: "failed" },
|
|
{ createdAt: "2023-12-07T11:26:54.870973Z", status: "success" },
|
|
{ createdAt: "2023-11-18T11:26:54.870982Z", status: "processing" },
|
|
{ createdAt: "2023-12-01T11:26:54.870991Z", status: "pending" },
|
|
{ createdAt: "2023-11-25T11:26:54.871000Z", status: "failed" },
|
|
{ createdAt: "2023-11-27T11:26:54.870914Z", status: "pending" },
|
|
{ createdAt: "2023-12-03T11:26:54.870927Z", status: "failed" },
|
|
{ createdAt: "2023-12-12T11:26:54.870937Z", status: "success" },
|
|
{ createdAt: "2023-11-23T11:26:54.870946Z", status: "processing" },
|
|
{ createdAt: "2023-12-09T11:26:54.870955Z", status: "pending" },
|
|
{ createdAt: "2023-11-29T11:26:54.870964Z", status: "failed" },
|
|
{ createdAt: "2023-12-07T11:26:54.870973Z", status: "success" },
|
|
{ createdAt: "2023-11-18T11:26:54.870982Z", status: "processing" },
|
|
{ createdAt: "2023-12-01T11:26:54.870991Z", status: "pending" },
|
|
{ createdAt: "2023-11-25T11:26:54.871000Z", status: "failed" },
|
|
];
|
|
|
|
export const restorations = [
|
|
{ backupId: "backup-1", createdAt: "2023-11-27T11:26:54.870914Z", status: "pending" },
|
|
{ backupId: "backup-2", createdAt: "2023-12-03T11:26:54.870927Z", status: "failed" },
|
|
{ backupId: "backup-3", createdAt: "2023-12-12T11:26:54.870937Z", status: "success" },
|
|
{ backupId: "backup-4", createdAt: "2023-11-23T11:26:54.870946Z", status: "processing" },
|
|
{ backupId: "backup-5", createdAt: "2023-12-09T11:26:54.870955Z", status: "pending" },
|
|
{ backupId: "backup-6", createdAt: "2023-11-29T11:26:54.870964Z", status: "failed" },
|
|
{ backupId: "backup-7", createdAt: "2023-12-07T11:26:54.870973Z", status: "success" },
|
|
{ backupId: "backup-8", createdAt: "2023-11-18T11:26:54.870982Z", status: "processing" },
|
|
{ backupId: "backup-9", createdAt: "2023-12-01T11:26:54.870991Z", status: "pending" },
|
|
{ backupId: "backup-10", createdAt: "2023-11-25T11:26:54.871000Z", status: "failed" },
|
|
];
|