Skip to content

Commit 86bdaff

Browse files
authored
docs: add stormkit as deployment option (#700)
1 parent 0bd1873 commit 86bdaff

File tree

5 files changed

+36
-1
lines changed

5 files changed

+36
-1
lines changed

public/assets/stormkit.svg

+6
Loading

src/routes/guides/deploying-your-app.mdx

+6
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,10 @@ Are you ready to deploy your Solid application? Follow our guides for different
4343
logo="vercel"
4444
/>
4545

46+
<ImageLinks
47+
title="Stormkit"
48+
href="/guides/deployment-options/stormkit"
49+
logo="stormkit"
50+
/>
51+
4652
</div>

src/routes/guides/deployment-options/data.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
"firebase.mdx",
77
"netlify.mdx",
88
"railway.mdx",
9-
"vercel.mdx"
9+
"vercel.mdx",
10+
"stormkit.mdx"
1011
]
1112
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
title: Stormkit
3+
order: 7
4+
mainNavExclude: true
5+
---
6+
7+
[Stormkit](https://www.stormkit.io) is a deployment platform for static websites, single-page applications (SPAs), and serverless functions.
8+
9+
1. Log in to Stormkit.
10+
11+
2. Using the user interface, import your Solid project from one of the three supported Git providers (GitHub, GitLab, or Bitbucket).
12+
13+
3. Navigate to the project’s production environment in Stormkit or create a new environment if needed.
14+
15+
4. Verify the build command in your Stormkit configuration. By default, Stormkit CI will run `npm run build` but you can specify a custom build command on this page.
16+
17+
5. Check output folder, unless its specified Stormkit will try to upload contents of build folder.
18+
19+
6. Click the “Deploy Now” button to deploy your site. Stormkit CI will build your code and upload contents of it.
20+
21+
Find more details on [Stormkit Documentation](https://stormkit.io/docs).

src/ui/image-links.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ export const logos: { [key: string]: { file: string; style?: string } } = {
1818
cssmodules: { file: "css-modules.svg", style: "invert" },
1919
macaron: { file: "macaron.svg" },
2020
tailwind: { file: "tailwind.svg" },
21+
stormkit: { file: "stormkit.svg" },
2122
uno: { file: "uno.svg" },
2223
};
2324

0 commit comments

Comments
 (0)