Skip to content

Commit

Permalink
Add note about forking to README
Browse files Browse the repository at this point in the history
  • Loading branch information
jstayton committed Nov 20, 2020
1 parent f68673d commit 2cb7d72
Showing 1 changed file with 18 additions and 16 deletions.
34 changes: 18 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,28 +52,30 @@ a link shortener that's easier than that!

To install Suri somewhere else, or just on your own machine:

1. Make sure you have a compatible version of [Node.js](https://nodejs.org/)
(see `engines.node` in [`package.json`](package.json)).
[nvm](https://github.com/nvm-sh/nvm) is the recommended installation method
on your own machine:
1. Fork this repository to create your own copy and clone to your machine.

```bash
$ nvm install
```
1. Make sure you have a compatible version of [Node.js](https://nodejs.org/)
(see `engines.node` in [`package.json`](package.json)).
[nvm](https://github.com/nvm-sh/nvm) is the recommended installation method
on your own machine:

1. Install dependencies with npm:
```bash
$ nvm install
```

```bash
$ npm install
```
1. Install dependencies with npm:

1. Build the static site:
```bash
$ npm install
```

```bash
$ npm run build
```
1. Build the static site:

1. Deploy the generated `_site` directory to its final destination.
```bash
$ npm run build
```

1. Deploy the generated `_site` directory to its final destination.

## Development

Expand Down

0 comments on commit 2cb7d72

Please sign in to comment.