Skip to content

Commit

Permalink
docs: add heroku deployment information (#126)
Browse files Browse the repository at this point in the history
  • Loading branch information
danielroe authored Apr 20, 2022
1 parent b7c7193 commit 074193c
Showing 1 changed file with 21 additions and 3 deletions.
24 changes: 21 additions & 3 deletions docs/deploy/providers/heroku.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,24 @@

**Preset:** `heroku` ([switch to this preset](/deploy/#changing-the-deployment-preset))

::: warning Work in Progress
Documentation for this section is not yet complete.
:::
Nitro supports deploying on [Heroku](https://heroku.com/) with minimal configuration.

## Using the Heroku CLI

1. Create a new Heroku app.

```bash
heroku create myapp
```

1. Configure Heroku to use the nodejs buildpack.

```bash
heroku buildpacks:set heroku/nodejs
```

1. Configure your app.

```bash
heroku config:set NITRO_PRESET=heroku
```

0 comments on commit 074193c

Please sign in to comment.