Skip to content

Commit

Permalink
Use fenced blocks more consistently
Browse files Browse the repository at this point in the history
  • Loading branch information
oalders committed May 15, 2024
1 parent 9d08607 commit f81d1f4
Showing 1 changed file with 14 additions and 6 deletions.
20 changes: 14 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,11 @@ If you prefer not to use Docker, the following commands will get you started:

## Installing Manually

carton install
npm install
export PATH="$(realpath ./node_modules/.bin):$PATH"
```bash
carton install
npm install
export PATH="$(realpath ./node_modules/.bin):$PATH"
```

### Installing on macOS

Expand All @@ -50,7 +52,9 @@ installed path on your system.

You can use the supplied wrapper around `prove` to run tests:

./bin/prove t
```bash
./bin/prove t
```

To run the tests in parallel, add `-j8` (or however many CPUs you have) to the
`prove` command.
Expand All @@ -71,7 +75,9 @@ carton exec plackup -p 5001 -s Gazelle -r

You will want to set up the supplied pre-commit Git hook like so:

./git/setup.sh
```bash
./git/setup.sh
```

which causes `precious` to be run before each commit. You can manually run this
with `precious path/to/file`
Expand All @@ -83,7 +89,9 @@ optional and not required to hack on the front end. The address to the API being
used can be changed in the `metacpan_web.conf` file. Ideally you would create a
new file called `metacpan_web_local.conf` that contains

api http://127.0.0.1:5000
```bash
api http://127.0.0.1:5000
```

which will be loaded on top of the existing config file.

Expand Down

0 comments on commit f81d1f4

Please sign in to comment.