From b8d1d911c9ed0f3fd65be4e68f6725adca785091 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Ollivier?= Date: Wed, 16 Jun 2021 12:20:39 +0200 Subject: [PATCH] docs(nuxtjs): add fume as deployment platform (#439) --- .../content/0.docs/8.deployment/24.fume.md | 37 +++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 nuxtjs.org/content/0.docs/8.deployment/24.fume.md diff --git a/nuxtjs.org/content/0.docs/8.deployment/24.fume.md b/nuxtjs.org/content/0.docs/8.deployment/24.fume.md new file mode 100644 index 000000000..d37ced89f --- /dev/null +++ b/nuxtjs.org/content/0.docs/8.deployment/24.fume.md @@ -0,0 +1,37 @@ +--- +title: Deploy Nuxt on Fume +description: How to deploy Nuxt.js on Fume +navigation: + title: Surge +target: Static & Server +category: deployment +--- + +[Fume](https://fume.app/) is an operations control platform powered by AWS. + +Fume includes the following features: + +- Serverless structures supporting both Server and Static with Lambda and CloudFront. +- [Automated](https://github.com/marketplace/actions/fume-deployment) deployments with rollbacks with the click of a button +- Metrics and cost prediction for each environment +- Domain control - import hosts, issues certificates, and map recorde to environments +- Integrated notifications to Slack, Discord, and other collaboration platforms + +## Setup + +Get a production-ready URL in 2 minutes with these steps: + +- Head to [Fume](https://fume.app), connect and plug in your AWS account +- Create a Team, and a NuxtJS project +- Run the following command inside your projects root folder + +::code-group +```bash [Yarn] +yarn global add fume-cli +fume deploy +``` +```bash [NPM] +npm install -g fume-cli +fume deploy +``` +::