Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: rebrand Layer0 to Edgio #2068

Merged
merged 1 commit into from
Jan 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
51 changes: 51 additions & 0 deletions docs/content/documentation/deployment/edgio.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
+++
title = "Edgio"
weight = 50
+++

If you don't have an account with Edgio, you can sign up [here](https://app.layer0.co/signup).

## Manual deploys

For a command-line manual deploy, follow these steps:

1. Install the Edgio CLI:

```bash
npm i -g @edgio/cli
```

2. Create a package.json at the root of your project with the following:

```bash
npm init -y
```

3. Initialize your project with:

```bash
edgio init
```

4. Update routes.js at the root of your project to the following:

```js
// 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')
```

5. Build your zola app:

```bash
zola build
```

6. Deploy!

```bash
edgio deploy
```
55 changes: 0 additions & 55 deletions docs/content/documentation/deployment/layer0.md

This file was deleted.