A bit more refined instructions in quick start.

main
Zed A. Shaw 1 year ago
parent 8db880768e
commit 5be8795113
  1. 23
      rendered/docs/quick-start.md

@ -60,7 +60,8 @@ If you can't then refer to the documentation for `ljsthw-bandolier`, _especially
If you can run the `npx bando-up` command then use it to create your first project: If you can run the `npx bando-up` command then use it to create your first project:
```shell ```shell
npx bando-up create my-project # see Next Steps at the end regargind --keep-git here
npx bando-up create --keep-git my-project
``` ```
This will checkout the [Bandolier Template](https://git.learnjsthehardway.com/learn-javascript-the-hard-way/bandolier-template) git repository into the `my-project` directory. Once it's done you can move on to _Configuration_. This will checkout the [Bandolier Template](https://git.learnjsthehardway.com/learn-javascript-the-hard-way/bandolier-template) git repository into the `my-project` directory. Once it's done you can move on to _Configuration_.
@ -329,4 +330,24 @@ npm run DANGER_ADMIN
## Next Steps ## Next Steps
One final thing you'll want to do is either delete the `.git` directory and make your own git like this:
```shell
# make sure you are in the my-project directory
pwd
# then remove .git and make your own
rm -rf .git
git init .
```
I suggest you also checkout the full `bandolier-template` for tracking updates like this:
```shell
# get out of your my-project directory if cd .. doesn't
cd ..
npx bando-up create --keep-git bandolier-template
```
If you create other projects later then drop the `--keep-git` so you don't have to do this step.
This Quick Start is designed to only get you up and running and make sure the basic features are working. This Quick Start is designed to only get you up and running and make sure the basic features are working.

Loading…
Cancel
Save