Skip to content

Commit 4f84f76

Browse files
committed
update verbiage
1 parent c1023d8 commit 4f84f76

File tree

1 file changed

+3
-3
lines changed
  • docs/developer-docs/latest/setup-deployment-guides/deployment/hosting-guides

1 file changed

+3
-3
lines changed

docs/developer-docs/latest/setup-deployment-guides/deployment/hosting-guides/heroku.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ heroku create
219219
```
220220

221221
:::tip
222-
The command `heroku create custom-project-name`, creates the `custom-project-name.heroku.com` URL. Otherwise, Heroku will automatically generate a random project name (and URL).
222+
The command `heroku create custom-project-name`, creates the `custom-project-name.heroku.com` URL. Otherwise, Heroku automatically generates a random project name (and URL).
223223
:::
224224

225225
To initialize a local project folder with an existing Heroku project use the following command:
@@ -266,7 +266,7 @@ The following tabs detail how to either set new values for the secrets or transf
266266

267267
::: tab Set new secrets Mac and Linux
268268

269-
The following `openssl` commands will generate random new secrets (Mac and Linux only) and set the config values:
269+
The following `openssl` commands generate random new secrets (Mac and Linux only) and set the config values:
270270

271271
```bash
272272
heroku config:set APP_KEYS=$(openssl rand -base64 32)
@@ -337,6 +337,6 @@ If you encounter the error `'heroku' does not appear to be a git repository` whe
337337

338338
## File Uploads
339339

340-
Like with project updates on Heroku, the file system doesn't support local uploading of files as they will be wiped when Heroku "cycles" the dyno. This type of file system is called [ephemeral](https://devcenter.heroku.com/articles/dynos#ephemeral-filesystem), which means the file system only lasts until the dyno is restarted (with Heroku this happens any time the application is redeployed or during the regular restart which can happen every few hours or every day).
340+
Like with project updates on Heroku, the file system doesn't support local uploading of files as they are deleted when Heroku "cycles" the dyno. This type of file system is called [ephemeral](https://devcenter.heroku.com/articles/dynos#ephemeral-filesystem), which means the file system only lasts until the dyno is restarted (with Heroku this happens any time the application is redeployed or during the regular restart which can happen every few hours or every day).
341341
342342
Due to Heroku's filesystem, an upload provider such as AWS S3 or Cloudinary is required. Additional details are available in the [installing providers documentation](/developer-docs/latest/development/providers.md). The [Strapi Market](market.strapi.io/providers) contains providers from both Strapi and the community. Additional community providers are available from [npmjs.com](https://www.npmjs.com/search?q=strapi-provider-upload-&page=0&perPage=20).

0 commit comments

Comments
 (0)