-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #50 from MarijnS95/indentation
README: Fix indentation for lists
- Loading branch information
Showing
1 changed file
with
27 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,38 @@ | ||
A set of GitHub pages describing the status of various Qualcomm platforms. | ||
# A set of GitHub pages describing the status of various Qualcomm platforms. | ||
|
||
Testing it locally | ||
------------------ | ||
## Testing it locally | ||
|
||
- Install Ruby and bundler: | ||
``` | ||
sudo apt install bundler | ||
``` | ||
|
||
```bash | ||
sudo apt install bundler | ||
``` | ||
|
||
- Setup bundler to use user path for all the storage: | ||
``` | ||
bundle config set --local path ~/.local/lib/ | ||
``` | ||
|
||
```bash | ||
bundle config set --local path ~/.local/lib/ | ||
``` | ||
|
||
- Install all the dependencies: | ||
``` | ||
bundle install | ||
``` | ||
|
||
```bash | ||
bundle install | ||
``` | ||
|
||
- Just rebuild the data: | ||
``` | ||
./regen.py | ||
bundle exec jekyll build | ||
``` | ||
Now you can check the HTML data built in `./_site/`. | ||
``` | ||
./regen.py | ||
bundle exec jekyll build | ||
``` | ||
Now you can check the HTML data built in `./_site/`. | ||
|
||
- Or execute a local Jekyll server, providing an ongoing preview: | ||
``` | ||
bundle exec jekyll serve | ||
``` | ||
Now you can open [localhost:4000](http://127.0.0.1:4000/msm/) with your Web | ||
browser. Jekyll will automatically regenerate the pages if any of the source | ||
files changes. | ||
|
||
```bash | ||
bundle exec jekyll serve | ||
``` | ||
|
||
Now you can open [localhost:4000](http://127.0.0.1:4000/msm/) with your Web | ||
browser. Jekyll will automatically regenerate the pages if any of the source | ||
files changes. |