File tree Expand file tree Collapse file tree 1 file changed +14
-6
lines changed
Expand file tree Collapse file tree 1 file changed +14
-6
lines changed Original file line number Diff line number Diff 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
5153You can use the supplied wrapper around ` prove ` to run tests:
5254
53- ./bin/prove t
55+ ``` bash
56+ ./bin/prove t
57+ ```
5458
5559To 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
7276You 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
7682which causes ` precious ` to be run before each commit. You can manually run this
7783with ` precious path/to/file `
@@ -83,7 +89,9 @@ optional and not required to hack on the front end. The address to the API being
8389used can be changed in the ` metacpan_web.conf ` file. Ideally you would create a
8490new 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
8896which will be loaded on top of the existing config file.
8997
You can’t perform that action at this time.
0 commit comments