Skip to content

Commit

Permalink
docs: update quick start section
Browse files Browse the repository at this point in the history
Add starting scripts without git manipulations.
  • Loading branch information
kr4chinin authored Jun 10, 2024
1 parent f190eb0 commit 135fbd6
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ and tools. Perfect option to bootstrap your next project.

## Quick start

In **existing** project directory:
- In **existing** project directory:

```bash
# clone repo
Expand All @@ -41,6 +41,22 @@ npm run prepare
npm start
```

- Same, but without **git** manipulations:

```bash
# clone repo
git clone https://github.com/kr4chinin/kr4chinin-advanced-vite-react-spa-template .

# install dependencies
npm install

# initialize husky hooks
npm run prepare

# start development server
npm start
```

Do not forget to change **author** and other specific information in `package.json`, remove `LICENSE.txt` and `README.md` files and add your own before publishing your app.

If you're not using **VSCode** IDE you also need to delete `.vscode` directory.
Expand Down

0 comments on commit 135fbd6

Please sign in to comment.