We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0cf054c commit 614c1caCopy full SHA for 614c1ca
README.md
@@ -3,3 +3,18 @@
3
This repository is for the US CMS Software & Computing website.
4
5
Changes can be made by performing a pull request from this repository.
6
+
7
+# Testing pages locally
8
9
+You can test your changes out using the Jekyll docker image:
10
+```bash
11
+docker run --rm -it \
12
+ --volume="$PWD:/srv/jekyll" \
13
+ -p 4000:4000 \
14
+ jekyll/builder:stable jekyll serve --incremental
15
+```
16
+*Note* - you need to run the command from the top-level of your local repo.
17
18
+This will mount your checked out copy of this repo, then build and start the
19
+jekyll server mapping it to port 4000 on your computer. You can make changes
20
+locally and view them at http://localhost:4000
0 commit comments