summaryrefslogtreecommitdiff
path: root/docs/src
diff options
context:
space:
mode:
Diffstat (limited to 'docs/src')
-rw-r--r--docs/src/pages/guides/deploy.md12
1 files changed, 12 insertions, 0 deletions
diff --git a/docs/src/pages/guides/deploy.md b/docs/src/pages/guides/deploy.md
index 4b877ec12..b0374960b 100644
--- a/docs/src/pages/guides/deploy.md
+++ b/docs/src/pages/guides/deploy.md
@@ -335,6 +335,18 @@ Use the following build settings:
Then click the **Save and Deploy** button.
+## Render
+
+You can deploy your Astro project on [Render](https://render.com/) following these steps:
+
+1. Create a [render.com account](https://dashboard.render.com/) and sign in
+2. Click the **New +** button from your dashboard and select **Static Site**
+3. Connect your [GitHub](https://github.com/) or [GitLab](https://about.gitlab.com/) repository or alternatively enter the public URL of a public repository
+4. Give your website a name, select the branch and specify the build command and publish directory
+ - **build command:** `npm run build`
+ - **publish directory:** `dist`
+6. Click the **Create Static Site** button
+
## Credits
This guide was originally based off [Vite](https://vitejs.dev/)’s well-documented static deploy guide.