📚 fix mv commands for switching from CRA-buildpack

This commit is contained in:
Mars Hall
2017-03-10 11:19:14 -08:00
committed by GitHub
parent 1f81f8ff96
commit f315d9405f

View File

@@ -59,9 +59,11 @@ If an app was previously deployed with [create-react-app-buildpack](https://gith
```bash
mkdir react-ui
mv * .[!.]* 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) and [`server/`](server/) modeled after the code in this repo
1. Create a root [`package.json`](package.json), [`server/`](server/), & [`.gitignore`](.gitignore) modeled after the code in this repo
1. Commit and deploy ♻️
```bash