mirror of https://github.com/getzola/zola
768 B
768 B
+++ title = "Edgio" weight = 50 +++
If you don't have an account with Edgio, you can sign up here.
Manual deploys
For a command-line manual deploy, follow these steps:
- Install the Edgio CLI:
npm i -g @edgio/cli
- Create a package.json at the root of your project with the following:
npm init -y
- Initialize your project with:
edgio init
- Update routes.js at the root of your project to the following:
// This file was added by edgio init.
// You should commit this file to source control.
import { Router } from '@edgio/core/router'
export default new Router().static('public')
- Build your zola app:
zola build
- Deploy!
edgio deploy