-
Notifications
You must be signed in to change notification settings - Fork 156
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs(nuxtjs): add fume as deployment platform (#439)
- Loading branch information
Showing
1 changed file
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
``` | ||
:: |