+
+```bash frame="none"
+npx sst@latest init
+```
+
+
+```bash frame="none"
+yarn dlx sst@latest init
+```
+
+
+```bash frame="none"
+pnpm dlx sst@latest init
+```
+
+
+```bash frame="none"
+bunx sst@latest init
+```
+
+
+
+3. This will detect your SolidStart app and ask you to update your `app.config.ts`.
+
+```ts title="app.config.ts"
+server: {
+ preset: "aws-lambda-streaming"
+}
+```
+
+4. When you are ready, you can deploy your app using:
+
+
+
+```bash frame="none"
+npx sst@latest deploy --stage production
+```
+
+
+```bash frame="none"
+yarn dlx sst@latest deploy --stage production
+```
+
+
+```bash frame="none"
+pnpm dlx sst@latest deploy --stage production
+```
+
+
+```bash frame="none"
+bunx sst@latest deploy --stage production
+```
+
+
+
+You can [read the full tutorial on the SST docs](https://sst.dev/docs/start/aws/solid).
+
+## Deploy to a Container
+
+You can also deploy your SolidStart app to a [container](https://sst.dev/docs/start/aws/solid#containers) using SST.
diff --git a/src/routes/guides/deployment-options/data.json b/src/routes/guides/deployment-options/data.json
index 4b2e7ebd9..2fa78a08d 100644
--- a/src/routes/guides/deployment-options/data.json
+++ b/src/routes/guides/deployment-options/data.json
@@ -2,6 +2,7 @@
"title": "Deploying your App",
"pages": [
"aws-via-flightcontrol.mdx",
+ "aws-via-sst.mdx",
"cloudflare.mdx",
"firebase.mdx",
"netlify.mdx",
diff --git a/src/ui/image-links.tsx b/src/ui/image-links.tsx
index 2efd2d57c..65afd0e1e 100644
--- a/src/ui/image-links.tsx
+++ b/src/ui/image-links.tsx
@@ -20,6 +20,7 @@ export const logos: { [key: string]: { file: string; style?: string } } = {
macaron: { file: "macaron.svg" },
tailwind: { file: "tailwind.svg" },
stormkit: { file: "stormkit.svg" },
+ sst: { file: "sst.svg" },
uno: { file: "uno.svg" },
};