Deploy a Website
The following guides are based on some shared assumptions:
- You are using the default build output location (
dist/
). This location can be changed using thedist
configuration option. - You are using npm. You can use equivalent commands to run the scripts if you are using Yarn or other package managers.
- Astro is installed as a local dev dependency in your project, and you have set up the following npm scripts:
{
"scripts": {
"start": "astro dev",
"build": "astro build",
"preview": "astro preview"
}
}
Building The App
You may run npm run build
command to build the app.
$ npm run build
By default, the build output will be placed at dist/
. You may deploy this dist/
folder to any of your preferred platforms.
GitHub Pages
Warning: By default, Github Pages will break the
_astro/
directory of your deployed website. To disable this behavior and fix this issue, make sure that you use thedeploy.sh
script below or manually add an empty.nojekyll
file to yourpublic/
site directory.
-
Set the correct
buildOptions.site
inastro.config.mjs
. -
Inside your project, create
deploy.sh
with the following content (uncommenting the appropriate lines), and run it to deploy:#!/usr/bin/env sh # abort on errors set -e # build npm run build # navigate into the build output directory cd dist # add .nojekyll to bypass GitHub Page's default behavior touch .nojekyll # if you are deploying to a custom domain # echo 'www.example.com' > CNAME git init git add -A git commit -m 'deploy' # if you are deploying to https://<USERNAME>.github.io # git push -f git@github.com:<USERNAME>/<USERNAME>.github.io.git main # if you are deploying to https://<USERNAME>.github.io/<REPO> # git push -f git@github.com:<USERNAME>/<REPO>.git main:gh-pages cd -
You can also run the above script in your CI setup to enable automatic deployment on each push.
GitHub Actions
- In the astro project repo, create
gh-pages
branch then go to Settings > Pages and set togh-pages
branch for GitHub Pages and set directory to/
(root). - Set the correct
buildOptions.site
inastro.config.mjs
. - Create the file
.github/workflows/main.yml
and add in the yaml below. Make sure to edit in your own details. - In GitHub go to Settings > Developer settings > Personal Access tokens. Generate a new token with repo permissions.
- In the astro project repo (not <YOUR USERNAME>.github.io) go to Settings > Secrets and add your new personal access token with the name
API_TOKEN_GITHUB
. - When you push changes to the astro project repo CI will deploy them to <YOUR USERNAME>.github.io for you.
# Workflow to build and deploy to your GitHub Pages repo.
# Edit your project details here.
# Remember to add API_TOKEN_GITHUB in repo Settings > Secrets as well!
env:
githubEmail: <YOUR GITHUB EMAIL ADDRESS>
deployToRepo: <NAME OF REPO TO DEPLOY TO (E.G. <YOUR USERNAME>.github.io)>
name: Github Pages Astro CI
on:
# Triggers the workflow on push and pull request events but only for the main branch
push:
branches: [main]
pull_request:
branches: [main]
# Allows you to run this workflow manually from the Actions tab.
workflow_dispatch:
jobs:
deploy:
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
# Install dependencies with npm
- name: Install dependencies
run: npm ci
# Build the project and add .nojekyll file to supress default behaviour
- name: Build
run: |
npm run build
touch ./dist/.nojekyll
# Push to your pages repo
- name: Push to pages repo
uses: cpina/github-action-push-to-another-repository@main
env:
API_TOKEN_GITHUB: ${{ secrets.API_TOKEN_GITHUB }}
with:
source-directory: 'dist'
destination-github-username: ${{ github.actor }}
destination-repository-name: ${{ env.deployToRepo }}
user-email: ${{ env.githubEmail }}
commit-message: Deploy ORIGIN_COMMIT
target-branch: gh-pages
Travis CI
-
Set the correct
buildOptions.site
inastro.config.mjs
. -
Create a file named
.travis.yml
in the root of your project. -
Run
npm install
locally and commit the generated lockfile (package-lock.json
). -
Use the GitHub Pages deploy provider template, and follow the Travis CI documentation.
language: node_js node_js: - lts/* install: - npm ci script: - npm run build deploy: provider: pages skip_cleanup: true local_dir: dist # A token generated on GitHub allowing Travis to push code on you repository. # Set in the Travis settings page of your repository, as a secure variable. github_token: $GITHUB_TOKEN keep_history: true on: branch: master
GitLab Pages
-
Set the correct
buildOptions.site
inastro.config.mjs
. -
Set
dist
inastro.config.mjs
topublic
andpublic
inastro.config.mjs
to a newly named folder that is holding everything currently inpublic
. The reasoning is becausepublic
is a second source folder in astro, so if you would like to output topublic
you’ll need to pull public assets from a different folder. Yourastro.config.mjs
might end up looking like this:export default /** @type {import('astro').AstroUserConfig} */ ({ // Enable the Preact renderer to support Preact JSX components. renderers: ['@astrojs/renderer-preact'], // files in `static/` will be blindly copied to `public/` public: 'static', // `public/` is where the built website will be output to dist: 'public', buildOptions: { sitemap: true, site: 'https://astro.build/', }, });
-
Create a file called
.gitlab-ci.yml
in the root of your project with the content below. This will build and deploy your site whenever you make changes to your content:image: node:14 pages: cache: paths: - node_modules/ script: - npm install - npm run build artifacts: paths: - public only: - main
Netlify
Note: If you are using an older build image on Netlify, make sure that you set your Node.js version in either a .nvmrc
file (example: node v14.17.6
) or a NODE_VERSION
environment variable. This step is no longer required by default.
You can configure your deployment in two ways, via the Netlify website or with a local project netlify.toml
file.
netlify.toml
file
Create a new netlify.toml
file at the top level of your project repository with the following settings:
[build]
command = "npm run build"
publish = "dist"
Push the new netlify.toml
file up to your hosted git repository. Then, set up a new project on Netlify for your git repository. Netlify will read this file and automatically configure your deployment.
Netlify Website UI
You can skip the netlify.toml
file and go directly to Netlify to configure your project. Netlify should now detect Astro projects automatically and pre-fill the configuration for you. Make sure that the following settings are entered before hitting the “Deploy” button:
- Build Command:
astro build
ornpm run build
- Publish directory:
dist
Google Cloud
Different from most available deploy options here, Google Cloud requires some UI clicks to deploy projects. (Most of these actions can also be done using the gcloud CLI).
Cloud Run
-
Create a new GCP project, or select one you already have.
-
Make sure the Cloud Run API is enabled.
-
Create a new service.
-
Use a container from Docker Hub or build your own using Cloud Build.
-
Configure a port from which the files are served.
-
Enable public access by adding a new permission to
allUsers
calledCloud Run Invoker
.
Cloud Storage
-
Create a new GCP project, or select one you already have.
-
Create a new bucket under Cloud Storage.
-
Give it a name and other required settings.
-
Upload your
dist
folder into it or upload using Cloud Build. -
Enable public access by adding a new permission to
allUsers
calledStorage Object Viewer
. -
Edit the website configuration and add
ìndex.html
as entrypoint and404.html
as errorpage.
Google Firebase
-
Make sure you have firebase-tools installed.
-
Create
firebase.json
and.firebaserc
at the root of your project with the following content:firebase.json
:{ "hosting": { "public": "dist", "ignore": [] } }
.firebaserc
:{ "projects": { "default": "<YOUR_FIREBASE_ID>" } }
-
After running
npm run build
, deploy using the commandfirebase deploy
.
Surge
-
First install surge, if you haven’t already.
-
Run
npm run build
. -
Deploy to surge by typing
surge dist
.
You can also deploy to a custom domain by adding surge dist yourdomain.com
.
Heroku
-
Install Heroku CLI.
-
Create a Heroku account by signing up.
-
Run
heroku login
and fill in your Heroku credentials:$ heroku login
-
Create a file called
static.json
in the root of your project with the below content:static.json
:{ "root": "./dist" }
This is the configuration of your site; read more at heroku-buildpack-static.
-
Set up your Heroku git remote:
# version change $ git init $ git add . $ git commit -m "My site ready for deployment." # creates a new app with a specified name $ heroku apps:create example # set buildpack for static sites $ heroku buildpacks:set https://github.com/heroku/heroku-buildpack-static.git
-
Deploy your site:
# publish site $ git push heroku master # opens a browser to view the Dashboard version of Heroku CI $ heroku open
Vercel
To deploy your Astro project with a Vercel for Git, make sure it has been pushed to a Git repository.
Go to https://vercel.com/import/git and import the project into Vercel using your Git of choice (GitHub, GitLab or BitBucket). Follow the wizard to select the project root with the project’s package.json
and override the build step using npm run build
and the output dir to be ./dist
After your project has been imported, all subsequent pushes to branches will generate Preview Deployments, and all changes made to the Production Branch (commonly “main”) will result in a Production Deployment.
Once deployed, you will get a URL to see your app live, such as the following: https://astro.vercel.app
Azure Static Web Apps
You can deploy your Astro project with Microsoft Azure Static Web Apps service. You need:
- An Azure account and a subscription key. You can create a free Azure account here.
- Your app code pushed to GitHub.
- The SWA Extension in Visual Studio Code.
Install the extension in VS Code and navigate to your app root. Open the Static Web Apps extension, sign in to Azure, and click the ’+’ sign to create a new Static Web App. You will be prompted to designate which subscription key to use.
Follow the wizard started by the extension to give your app a name, choose a framework preset, and designate the app root (usually /
) and built file location /dist
. The wizard will run and will create a GitHub action in your repo in a .github
folder.
The action will work to deploy your app (watch its progress in your repo’s Actions tab) and, when successfully completed, you can view your app in the address provided in the extension’s progress window by clicking the ‘Browse Website’ button that appears when the GitHub action has run.
Cloudflare Pages
You can deploy your Astro project on Cloudflare Pages. You need:
- A Cloudflare account. If you don’t already have one, you can create a free Cloudflare account during the process.
- Your app code pushed to a GitHub repository.
Then, set up a new project on Cloudflare Pages.
Use the following build settings:
- Framework preset:
None
(As of this writing, Astro is not listed.) - Build command:
astro build
ornpm run build
- Build output directory:
dist
- Environment variables (advanced): Add an environment variable with the Variable name of
NODE_VERSION
and a Value of a Node version that’s compatible with Astro, since the Cloudflare Pages default version probably won’t work.
Then click the Save and Deploy button.
Render
You can deploy your Astro project on Render following these steps:
- Create a render.com account and sign in
- Click the New + button from your dashboard and select Static Site
- Connect your GitHub or GitLab repository or alternatively enter the public URL of a public repository
- Give your website a name, select the branch and specify the build command and publish directory
- build command:
npm run build
- publish directory:
dist
- build command:
- Click the Create Static Site button
Buddy
You can deploy your Astro project using Buddy. To do so you’ll need to:
-
Create a Buddy account here.
-
Create a new project and connect it with a git repository (GitHub, GitLab, BitBucket, any private Git Repository or you can use Buddy Git Hosting).
-
Add a new pipeline.
-
In the newly created pipeline add a Node.js action.
-
In this action add:
npm install npm run build
-
Add a deployment action - there are many to choose from, you can browse them here. Although their can settings differ, remember to set the Source path to
dist
. -
Press the Run button.
Layer0
You can deploy your Astro project using the steps in the following sections.
Create the Astro Site
If you don’t have an existing Astro site, you can create one by running:
# Make a new project directory, and navigate directly into it
$ mkdir my-astro-project && cd $_
# prepare for liftoff...
$ npm init astro
# install dependencies
$ npm install
# start developing!
$ npm run dev
# when you're ready: build your static site to `dist/`
$ npm run build
Add Layer0
# First, globally install the Layer0 CLI:
$ npm i -g @layer0/cli
# Then, add Layer0 to your Astro site:
$ 0 init
Update your Layer0 Router
Paste the following into routes.ts:
// routes.ts
import { Router } from '@layer0/core';
export default new Router()
.get(
'/:path*/:file.:ext(js|css|png|ico|jpg|gif|svg)',
({ cache, serveStatic }) => {
cache({
browser: {
// cache js, css, and images in the browser for one hour...
maxAgeSeconds: 60 * 60,
},
edge: {
// ... and at the edge for one year
maxAgeSeconds: 60 * 60 * 24 * 365,
},
});
serveStatic('dist/:path*/:file.:ext');
}
)
.match('/:path*', ({ cache, serveStatic, setResponseHeader }) => {
cache({
// prevent the browser from caching html...
browser: false,
edge: {
// ...cache html at the edge for one year
maxAgeSeconds: 60 * 60 * 24 * 365,
},
});
setResponseHeader('content-type', 'text/html; charset=UTF-8');
serveStatic('dist/:path*');
});
You can remove the origin backend from layer0.config.js
:
module.exports = {};
Deploy to Layer0
To deploy your site to Layer0, run:
# Create a production build of your astro site
$ npm run build
# Deploy it to Layer0
$ 0 deploy
Credits
This guide was originally based off Vite’s well-documented static deploy guide.