-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
docs: add documentation for testing docs related changes #58
base: main
Are you sure you want to change the base?
Conversation
Signed-off-by: Roaa Sakr <[email protected]>
Signed-off-by: Roaa Sakr <[email protected]>
Signed-off-by: Roaa Sakr <[email protected]>
@@ -0,0 +1,47 @@ | |||
# Testing github pages locally |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: # Testing GitHub Pages Locally with Jekyll
|
||
* Install dependencies | ||
|
||
```bash |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Tab in (2 spaces). Otherwise, you are breaking the list.
|
||
```bash | ||
cat <<EOF > Gemfile | ||
source "https://rubygems.org" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Any reason you aren’t including this file in the repo?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Didn't want it to interfere with what the github workflow autogenerates.
My guess is we get version upgrades.. etc for free with the workflow and would be good to keep it as is.
bundle install | ||
``` | ||
|
||
* Update `_config.yml` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The Jekyll command line allows you to specify multiple config files, with later config files overriding values of earlier config files. Could this be used to avoid needing to temporarily modify the _config.yml
file?
|
||
* Install dependencies | ||
|
||
```bash |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Specify the distro+version this is applicable to. Also, if these tools are available in Azure Linux, it would be to provide steps for that as well.
Checklist