summaryrefslogtreecommitdiff
path: root/docs/src
diff options
context:
space:
mode:
authorGravatar Roman Walters <pointout@users.noreply.github.com> 2021-09-23 19:49:56 +0200
committerGravatar GitHub <noreply@github.com> 2021-09-23 12:49:56 -0500
commit741411306553668083a8977b94755d557577197c (patch)
tree25a49c192f680cf6d2793b1d076da9d7617390ca /docs/src
parent191c4556d9470b928a20014488bdaa9ba7cf8071 (diff)
downloadastro-741411306553668083a8977b94755d557577197c.tar.gz
astro-741411306553668083a8977b94755d557577197c.tar.zst
astro-741411306553668083a8977b94755d557577197c.zip
Update deploy.md with information how to deploy to render.com (#1391)
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.