1
0
Fork 0
mirror of synced 2024-09-29 08:51:28 +13:00
appwrite/app/config/runtimes/specifications.php
2024-07-31 20:27:32 +09:00

26 lines
579 B
PHP

<?php
require_once __DIR__ . '/enum.php';
return [
Specifications::S_1VCPU_512MB->value => [
'slug' => 's-1vcpu-512mb',
'memory' => 512,
'cpus' => 1
],
Specifications::S_1VCPU_1GB->value => [
'slug' => 's-1vcpu-1gb',
'memory' => 1024,
'cpus' => 1
],
Specifications::S_2VCPU_2GB->value => [
'slug' => 's-2vcpu-2gb',
'memory' => 2048,
'cpus' => 2
],
Specifications::S_2VCPU_4GB->value => [
'slug' => 's-2vcpu-4gb',
'memory' => 4096,
'cpus' => 2
],
];