Skip to content

Commit

Permalink
Merge pull request #79 from appwrite/feat-add-ssr-runtime
Browse files Browse the repository at this point in the history
Add SSR runtime
  • Loading branch information
Meldiron authored Jan 9, 2025
2 parents 1e43064 + a021a2b commit 93386b4
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/Runtimes/Runtimes.php
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,10 @@ public function __construct(string $version = '')
$flutter = new Runtime('flutter', 'Flutter', 'sh helpers/server.sh');
$flutter->addVersion('3.24', 'dart:3.5.2', 'openruntimes/flutter:'.$this->version.'-3.24', [System::X86, System::ARM64]);
$this->runtimes['flutter'] = $flutter;

$ssr = new Runtime('ssr', 'SSR', 'sh helpers/server.sh');
$ssr->addVersion('22', 'node:22.9.0-alpine3.20', 'openruntimes/ssr:' . $this->version . '-22', [System::X86, System::ARM64]);
$this->runtimes['ssr'] = $ssr;
}

/**
Expand Down

0 comments on commit 93386b4

Please sign in to comment.