Skip to content

Commit 93386b4

Browse files
authored
Merge pull request #79 from appwrite/feat-add-ssr-runtime
Add SSR runtime
2 parents 1e43064 + a021a2b commit 93386b4

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/Runtimes/Runtimes.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,10 @@ public function __construct(string $version = '')
126126
$flutter = new Runtime('flutter', 'Flutter', 'sh helpers/server.sh');
127127
$flutter->addVersion('3.24', 'dart:3.5.2', 'openruntimes/flutter:'.$this->version.'-3.24', [System::X86, System::ARM64]);
128128
$this->runtimes['flutter'] = $flutter;
129+
130+
$ssr = new Runtime('ssr', 'SSR', 'sh helpers/server.sh');
131+
$ssr->addVersion('22', 'node:22.9.0-alpine3.20', 'openruntimes/ssr:' . $this->version . '-22', [System::X86, System::ARM64]);
132+
$this->runtimes['ssr'] = $ssr;
129133
}
130134

131135
/**

0 commit comments

Comments
 (0)