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: add fume as deployment platform #439

Merged
merged 1 commit into from
Jun 16, 2021
Merged
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
37 changes: 37 additions & 0 deletions nuxtjs.org/content/0.docs/8.deployment/24.fume.md
Original file line number Diff line number Diff line change
@@ -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
```
::