From a3d5afea18eb447b0b1b9bcc144804260570e76f Mon Sep 17 00:00:00 2001 From: Mars Hall Date: Sun, 23 Apr 2017 09:17:51 -0700 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9A=20fix=20list=20indentation?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index 35cbbc7..bd28689 100755 --- a/README.md +++ b/README.md @@ -52,25 +52,25 @@ If an app was previously deployed with [create-react-app-buildpack](https://gith 1. Remove **create-react-app-buildpack** from the app; [heroku/nodejs buildpack](https://devcenter.heroku.com/articles/nodejs-support#activation) will be automatically activated - ```bash - heroku buildpacks:clear - ``` + ```bash + heroku buildpacks:clear + ``` 1. Move the root React app files (including dotfiles) into a `react-ui/` subdirectory - ```bash - mkdir react-ui - git mv [!react-ui]* react-ui/ - # You'll see "fatal: Not a git repository"; let's fix that error - mv react-ui/.git ./ - ``` + ```bash + mkdir react-ui + git mv [!react-ui]* react-ui/ + # You'll see "fatal: Not a git repository"; let's fix that error + mv react-ui/.git ./ + ``` 1. Create a root [`package.json`](package.json), [`server/`](server/), & [`.gitignore`](.gitignore) modeled after the code in this repo 1. Commit and deploy ♻️ - ```bash - git add -A - git commit -m 'Migrate from create-react-app-buildpack to Node server' - git push heroku master - ``` + ```bash + git add -A + git commit -m 'Migrate from create-react-app-buildpack to Node server' + git push heroku master + ``` ## Local Development