From 2b7875ff8c22a0a328aa38ce89b551d08a282604 Mon Sep 17 00:00:00 2001 From: Rishi Raj Jain Date: Mon, 9 Jan 2023 02:00:29 +0530 Subject: [PATCH] docs: rebrand Layer0 to Edgio (#2068) --- .../content/documentation/deployment/edgio.md | 51 +++++++++++++++++ .../documentation/deployment/layer0.md | 55 ------------------- 2 files changed, 51 insertions(+), 55 deletions(-) create mode 100644 docs/content/documentation/deployment/edgio.md delete mode 100644 docs/content/documentation/deployment/layer0.md diff --git a/docs/content/documentation/deployment/edgio.md b/docs/content/documentation/deployment/edgio.md new file mode 100644 index 00000000..f2c7e30b --- /dev/null +++ b/docs/content/documentation/deployment/edgio.md @@ -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 +``` diff --git a/docs/content/documentation/deployment/layer0.md b/docs/content/documentation/deployment/layer0.md deleted file mode 100644 index 11bdac9d..00000000 --- a/docs/content/documentation/deployment/layer0.md +++ /dev/null @@ -1,55 +0,0 @@ -+++ -title = "Layer0" -weight = 50 -+++ - -If you don't have an account with Layer0, you can sign up [here](https://app.layer0.co/signup). - -## Manual deploys - -For a command-line manual deploy, follow these steps: -1. Install the Layer0 CLI: -```bash -npm i -g @layer0/cli -``` - -2. Create a package.json at the root of your project with the following: -```bash -npm init -``` - -3. Initialize your project with: -```bash -0 init -``` - -4. Update routes.js at the root of your project to the following: -```js -// This file was added by layer0 init. -// You should commit this file to source control. - -import { Router } from '@layer0/core/router' - -export default new Router().static('public', ({ cache }) => { - cache({ - edge: { - maxAgeSeconds: 60 * 60 * 60 * 365, - forcePrivateCaching: true, - }, - browser: { - maxAgeSeconds: 0, - serviceWorkerSeconds: 60 * 60 * 24, - }, - }) -}) -``` - -5. Build your zola app: -```bash -zola build -``` - -6. Deploy! -```bash -0 deploy -```