Skip to content
This repository has been archived by the owner on Feb 1, 2023. It is now read-only.

Commit

Permalink
Update README.md (mars#120)
Browse files Browse the repository at this point in the history
I update the readme to use the Buildpack Registry short-name
  • Loading branch information
jkutner authored and balrampariyarath committed Aug 29, 2020
1 parent 854c5ec commit caacd20
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ Ensure [requirements](#user-content-requires) are met, then execute the followin
create-react-app $APP_NAME
cd $APP_NAME
git init
heroku create $APP_NAME --buildpack https://github.com/mars/create-react-app-buildpack.git
heroku create $APP_NAME --buildpack mars/create-react-app
git add .
git commit -m "Start with create-react-app"
git push heroku master
Expand Down Expand Up @@ -102,7 +102,7 @@ At this point, this new repo is local, only on your computer. Eventually, you ma
### Create the Heroku app

```bash
heroku create $APP_NAME --buildpack https://github.com/mars/create-react-app-buildpack.git
heroku create $APP_NAME --buildpack mars/create-react-app
```

✏️ *Replace `$APP_NAME` with a name for your unique app.*
Expand Down Expand Up @@ -155,7 +155,7 @@ Heroku CI uses [`app.json`](https://devcenter.heroku.com/articles/app-json-schem
{
"buildpacks": [
{
"url": "https://github.com/mars/create-react-app-buildpack"
"url": "mars/create-react-app"
}
]
}
Expand Down Expand Up @@ -417,7 +417,7 @@ Troubleshooting
If it's not using `create-react-app-buildpack`, then set it:
```bash
heroku buildpacks:set https://github.com/mars/create-react-app-buildpack.git
heroku buildpacks:set mars/create-react-app
```
…and deploy with the new buildpack:
Expand Down

0 comments on commit caacd20

Please sign in to comment.