Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 14 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,26 @@

## Development

### Quick start

```
$ yarn start
$ yarn install // installs all dependencies
$ yarn start // starts local server
```

or
When started successfully, you may access the local server at http://localhost:8000/

### Troubleshooting

Some issues can be resolved by clearing the cache and rebuilding files. The first command is less destructive, while the second resets your local environment from scratch.

```
$ yarn clear // clears local cache, builds (excludes node_modules)
```

or

```
$ yarn clean // clears local cache, builds, node_modules, yarn trash
```

Expand Down
Loading