-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into development
- Loading branch information
Showing
7 changed files
with
106 additions
and
86 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
Large diffs are not rendered by default.
Oops, something went wrong.
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
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
backpack.pt |
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,25 +1,31 @@ | ||
**Building the web version** | ||
|
||
Requirements: [Jekyll](https://jekyllrb.com/docs/installation/) and [Sphinx](https://www.sphinx-doc.org/en/1.8/usage/installation.html) | ||
Requirements: [Jekyll](https://jekyllrb.com/docs/installation/) and [Sphinx](https://www.sphinx-doc.org/en/1.8/usage/installation.html) | ||
and installing the jekyll dependencies (`bundle install` in `docs_src/splash`) | ||
|
||
Full build to output results in `../docs` | ||
``` | ||
bash buildweb.sh | ||
``` | ||
- Full build to output results in `../docs` | ||
``` | ||
bash buildweb.sh | ||
``` | ||
|
||
Local build of the Jekyll splash page | ||
``` | ||
cd splash | ||
bundle exec jekyll server | ||
``` | ||
and go to `localhost:4000/backpack` | ||
- Local build of the Jekyll splash page | ||
``` | ||
cd splash | ||
bundle exec jekyll server | ||
``` | ||
and go to `localhost:4000/backpack` | ||
|
||
Note: The code examples on backpack.pt are defined with HTML tags in | ||
`splash/_includes/code-samples.html`. | ||
There are no python source file to generate them. | ||
Test manually by copy-pasting from the resulting page. | ||
|
||
Local build of the documentation | ||
``` | ||
cd rtd | ||
make | ||
``` | ||
and open `/docs_src/rtd_output/index.html` | ||
- Local build of the documentation | ||
``` | ||
cd rtd | ||
make | ||
``` | ||
and open `/docs_src/rtd_output/index.html` | ||
|
||
|
||
|
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 |
---|---|---|
|
@@ -2,3 +2,4 @@ cd splash | |
bundle exec jekyll build -d "../../docs" | ||
cd .. | ||
touch ../docs/.nojekyll | ||
cp CNAME ../docs/CNAME |
Oops, something went wrong.