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 +``` +::