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 thedistconfiguration 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
Section titled Building The AppYou may run npm run build command to build the app.
$ npm run buildBy default, the build output will be placed at dist/. You may deploy this dist/ folder to any of your preferred platforms.
GitHub Pages
Section titled GitHub PagesWarning: 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.shscript below or manually add an empty.nojekyllfile to yourpublic/site directory.
-
Set the correct
.siteinastro.config.mjs. -
Inside your project, create
deploy.shwith 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
Section titled GitHub Actions- In the astro project repo, create
gh-pagesbranch then go to Settings > Pages and set togh-pagesbranch for GitHub Pages and set directory to/(root). - Set the correct
.siteinastro.config.mjs. - Create the file
.github/workflows/main.ymland 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-pagesTravis CI
Section titled Travis CI-
Set the correct
.siteinastro.config.mjs. -
Create a file named
.travis.ymlin the root of your project. -
Run
npm installlocally 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
Section titled GitLab Pages-
Set the correct
.siteinastro.config.mjs. -
Set
distinastro.config.mjstopublicandpublicinastro.config.mjsto a newly named folder that is holding everything currently inpublic. The reasoning is becausepublicis a second source folder in astro, so if you would like to output topublicyou’ll need to pull public assets from a different folder. Yourastro.config.mjsmight end up looking like this:export default defineConfig({ sitemap: true, site: 'https://astro.build/', }); -
Create a file called
.gitlab-ci.ymlin 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
Section titled NetlifyNote: 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
Section titled netlify.toml fileCreate a new netlify.toml file at the top level of your project repository with the following settings:
[build]
command = "npm run build"
publish = "dist"Using pnpm on Netlify? Use the following settings instead:
[build.environment]
NPM_FLAGS = "--version" # prevent Netlify npm install
[build]
command = 'npx pnpm i --store=node_modules/.pnpm-store && 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
Section titled Netlify Website UIYou 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 buildornpm run build - Publish directory:
dist
Google Cloud
Section titled Google CloudDifferent 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
Section titled 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
allUserscalledCloud Run Invoker.
Cloud Storage
Section titled 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
distfolder into it or upload using Cloud Build. -
Enable public access by adding a new permission to
allUserscalledStorage Object Viewer. -
Edit the website configuration and add
ìndex.htmlas entrypoint and404.htmlas errorpage.
Google Firebase
Section titled Google Firebase-
Make sure you have firebase-tools installed.
-
Create
firebase.jsonand.firebasercat 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
Section titled 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
Section titled Heroku-
Install Heroku CLI.
-
Create a Heroku account by signing up.
-
Run
heroku loginand fill in your Heroku credentials:$ heroku login -
Create a file called
static.jsonin 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
Section titled VercelYou can deploy Astro to Vercel through the CLI or the Vercel git integrations.
- Install the Vercel CLI and run
vercelto deploy. - When asked
Want to override the settings? [y/N], chooseY. - Update
Output Directoryto./dist. - Your application is deployed! (e.g. astro.vercel.app)
$ npm i -g vercel
$ vercel- Push your code to your git repository (GitHub, GitLab, BitBucket).
- Import your project into Vercel.
- Update
Output Directorytodist. - Your application is deployed! (e.g. astro.vercel.app)
After your project has been imported and deployed, 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.
Learn more about Vercel’s Git Integration.
Azure Static Web Apps
Section titled Azure Static Web AppsYou 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
Section titled Cloudflare PagesYou 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 or a GitLab repository.
Then, set up a new project on Cloudflare Pages.
Use the following build settings:
- Framework preset:
Astro - Build command:
npm run build - Build output directory:
dist - Environment variables (advanced): Currently, Cloudflare Pages supports
NODE_VERSION = 12.18.0in the Pages build environment by default. Astro requires14.15.0,v16.0.0, or higher. You can add an environment variable with the Variable name ofNODE_VERSIONand a Value of a Node version that’s compatible with Astro or by specifying the node version of your project in a.nvmrcor.node-versionfile.
Then click the Save and Deploy button.
Render
Section titled RenderYou 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
Section titled BuddyYou 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
Section titled Layer0You can deploy your Astro project using the steps in the following sections.
Create the Astro Site
Section titled Create the Astro SiteIf 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 create astro@latest
# install dependencies
npm install
# start developing!
npm run dev
# when you're ready: build your static site to `dist/`
npm run buildAdd Layer0
Section titled Add Layer0# First, globally install the Layer0 CLI:
$ npm i -g @layer0/cli
# Then, add Layer0 to your Astro site:
$ 0 initUpdate your Layer0 Router
Section titled Update your Layer0 RouterPaste 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
Section titled Deploy to Layer0To deploy your site to Layer0, run:
# Create a production build of your astro site
$ npm run build
# Deploy it to Layer0
$ 0 deployCredits
Section titled CreditsThis guide was originally based off Vite’s well-documented static deploy guide.