File tree 1 file changed +14
-6
lines changed 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:
24
24
25
25
## Installing Manually
26
26
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
+ ```
30
32
31
33
### Installing on macOS
32
34
@@ -50,7 +52,9 @@ installed path on your system.
50
52
51
53
You can use the supplied wrapper around ` prove ` to run tests:
52
54
53
- ./bin/prove t
55
+ ``` bash
56
+ ./bin/prove t
57
+ ```
54
58
55
59
To run the tests in parallel, add ` -j8 ` (or however many CPUs you have) to the
56
60
` prove ` command.
@@ -71,7 +75,9 @@ carton exec plackup -p 5001 -s Gazelle -r
71
75
72
76
You will want to set up the supplied pre-commit Git hook like so:
73
77
74
- ./git/setup.sh
78
+ ``` bash
79
+ ./git/setup.sh
80
+ ```
75
81
76
82
which causes ` precious ` to be run before each commit. You can manually run this
77
83
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
83
89
used can be changed in the ` metacpan_web.conf ` file. Ideally you would create a
84
90
new file called ` metacpan_web_local.conf ` that contains
85
91
86
- api http://127.0.0.1:5000
92
+ ``` bash
93
+ api http://127.0.0.1:5000
94
+ ```
87
95
88
96
which will be loaded on top of the existing config file.
89
97
You can’t perform that action at this time.
0 commit comments