first commit
This commit is contained in:
144
src/app/data/server-info.ts
Normal file
144
src/app/data/server-info.ts
Normal file
@@ -0,0 +1,144 @@
|
||||
import { ServerInfoModel } from "../models/server-info";
|
||||
|
||||
export const serverInfo: ServerInfoModel[] = [
|
||||
{
|
||||
id: 1,
|
||||
companyId: 1,
|
||||
databaseId: 1,
|
||||
provider: "DigitalOcean",
|
||||
serverType: "shared",
|
||||
operatingSystem: "Ubuntu 20.04 LTS",
|
||||
cpu: "Intel Xeon 2.3 GHz",
|
||||
storageGB: 100,
|
||||
ramGB: 4,
|
||||
bandwidthGB: 4,
|
||||
monthlyCostUSD: 10,
|
||||
location: "New York, USA",
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
companyId: 2,
|
||||
databaseId: 2,
|
||||
provider: "Amazon Web Services",
|
||||
serverType: "VPS",
|
||||
operatingSystem: "Amazon Linux 2",
|
||||
cpu: "Intel Xeon 2.5 GHz",
|
||||
storageGB: 500,
|
||||
ramGB: 16,
|
||||
bandwidthGB: 10,
|
||||
monthlyCostUSD: 80,
|
||||
location: "North Virginia, USA",
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
companyId: 3,
|
||||
databaseId: 4,
|
||||
provider: "Google Cloud Platform",
|
||||
serverType: "dedicated",
|
||||
operatingSystem: "CentOS 7",
|
||||
cpu: "Intel Xeon 2.4 GHz",
|
||||
storageGB: 200,
|
||||
ramGB: 8,
|
||||
bandwidthGB: 5,
|
||||
monthlyCostUSD: 30,
|
||||
location: "Oregon, USA",
|
||||
},
|
||||
{
|
||||
id: 4,
|
||||
companyId: 4,
|
||||
databaseId: 3,
|
||||
provider: "Vultr",
|
||||
serverType: "shared",
|
||||
operatingSystem: "Ubuntu 18.04 LTS",
|
||||
cpu: "AMD Ryzen 2.2 GHz",
|
||||
storageGB: 250,
|
||||
ramGB: 12,
|
||||
bandwidthGB: 8,
|
||||
monthlyCostUSD: 50,
|
||||
location: "Singapore",
|
||||
},
|
||||
{
|
||||
id: 5,
|
||||
companyId: 5,
|
||||
databaseId: 8,
|
||||
provider: "Linode",
|
||||
serverType: "VPS",
|
||||
operatingSystem: "Debian 10",
|
||||
cpu: "AMD EPYC 2.4 GHz",
|
||||
storageGB: 300,
|
||||
ramGB: 16,
|
||||
bandwidthGB: 6,
|
||||
monthlyCostUSD: 40,
|
||||
location: "Dallas, USA",
|
||||
},
|
||||
{
|
||||
id: 6,
|
||||
companyId: 6,
|
||||
databaseId: 6,
|
||||
provider: "Hostinger",
|
||||
serverType: "shared",
|
||||
operatingSystem: "CentOS 8",
|
||||
cpu: "Intel Xeon 2.0 GHz",
|
||||
storageGB: 150,
|
||||
ramGB: 6,
|
||||
bandwidthGB: 3,
|
||||
monthlyCostUSD: 15,
|
||||
location: "Lithuania",
|
||||
},
|
||||
{
|
||||
id: 7,
|
||||
companyId: 7,
|
||||
databaseId: 7,
|
||||
provider: "Hetzner",
|
||||
serverType: "dedicated",
|
||||
operatingSystem: "Ubuntu 16.04 LTS",
|
||||
cpu: "Intel Xeon 2.2 GHz",
|
||||
storageGB: 400,
|
||||
ramGB: 12,
|
||||
bandwidthGB: 10,
|
||||
monthlyCostUSD: 60,
|
||||
location: "Falkenstein, Germany",
|
||||
},
|
||||
{
|
||||
id: 8,
|
||||
companyId: 8,
|
||||
databaseId: 5,
|
||||
provider: "OVH",
|
||||
serverType: "shared",
|
||||
operatingSystem: "Ubuntu 20.04 LTS",
|
||||
cpu: "Intel Xeon 2.3 GHz",
|
||||
storageGB: 100,
|
||||
ramGB: 4,
|
||||
bandwidthGB: 4,
|
||||
monthlyCostUSD: 10,
|
||||
location: "France",
|
||||
},
|
||||
{
|
||||
id: 9,
|
||||
companyId: 9,
|
||||
databaseId: 9,
|
||||
provider: "AWS",
|
||||
serverType: "VPS",
|
||||
operatingSystem: "Amazon Linux 2",
|
||||
cpu: "2 vCPUs",
|
||||
storageGB: 40,
|
||||
ramGB: 4,
|
||||
bandwidthGB: 10,
|
||||
monthlyCostUSD: 50,
|
||||
location: "Sydney, Australia",
|
||||
},
|
||||
{
|
||||
id: 10,
|
||||
companyId: 10,
|
||||
databaseId: 10,
|
||||
provider: "AWS",
|
||||
serverType: "dedicated",
|
||||
operatingSystem: "Red Hat Enterprise Linux 8",
|
||||
cpu: "4 vCPUs",
|
||||
storageGB: 100,
|
||||
ramGB: 8,
|
||||
bandwidthGB: 20,
|
||||
monthlyCostUSD: 200,
|
||||
location: "Mumbai, India",
|
||||
},
|
||||
];
|
||||
Reference in New Issue
Block a user