Skip to content

Commit 2d3870c

Browse files
committed
Use jekyll serve detach command
I somehow missed that the command existed
1 parent d6a5b28 commit 2d3870c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ Follow these steps and note these guidelines to begin contributing:
7878

7979
![Pre-commit install terminal](/assets/images/pre-commit_install_terminal.png)
8080

81-
- After installing the dependencies, its time to run the application. We do this by running the command `bundle exec jekyll serve > /dev/null 2>&1 &` or run the default **Build Task** <kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>B</kbd>:
81+
- After installing the dependencies, its time to run the application. We do this by running the command `bundle exec jekyll serve --detach` or run the default **Build Task** <kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>B</kbd>:
8282

8383
![Jekyll serve terminal](/assets/images/jekyll_serve_terminal.png)
8484

@@ -94,11 +94,11 @@ Follow these steps and note these guidelines to begin contributing:
9494

9595
- To run the test suites for the codebase
9696

97-
- Ensure the site is running locally with `bundle exec jekyll serve > /dev/null 2>&1 &`. This will run the server in the background, and any content changes will immediately reflect on the site.
97+
- Ensure the site is running locally with `bundle exec jekyll serve --detach`. This will run the server in the background, and any content changes will immediately reflect on the site.
9898

9999
![Jekyll serve terminal](/assets/images/jekyll_server_start_terminal.png)
100100

101-
- If you need to restart the server, you can run `killall jekyll` to stop the server and then run `bundle exec jekyll serve > /dev/null 2>&1 &` to start the server again.
101+
- If you need to restart the server, you can run `killall jekyll` to stop the server and then run `bundle exec jekyll serve --detach` to start the server again.
102102

103103
- Run all tests in the test-suite with the command `python3 -m pytest`:
104104

0 commit comments

Comments
 (0)