Skip to content

Commit f81d1f4

Browse files
committed
Use fenced blocks more consistently
1 parent 9d08607 commit f81d1f4

File tree

1 file changed

+14
-6
lines changed

1 file changed

+14
-6
lines changed

README.md

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,11 @@ If you prefer not to use Docker, the following commands will get you started:
2424

2525
## Installing Manually
2626

27-
carton install
28-
npm install
29-
export PATH="$(realpath ./node_modules/.bin):$PATH"
27+
```bash
28+
carton install
29+
npm install
30+
export PATH="$(realpath ./node_modules/.bin):$PATH"
31+
```
3032

3133
### Installing on macOS
3234

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

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

53-
./bin/prove t
55+
```bash
56+
./bin/prove t
57+
```
5458

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

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

74-
./git/setup.sh
78+
```bash
79+
./git/setup.sh
80+
```
7581

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

86-
api http://127.0.0.1:5000
92+
```bash
93+
api http://127.0.0.1:5000
94+
```
8795

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

0 commit comments

Comments
 (0)