-
Notifications
You must be signed in to change notification settings - Fork 20
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 #98 from ReadAlongs/master
Release the latest features of Studio
- Loading branch information
Showing
41 changed files
with
1,809 additions
and
720 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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
[MASTER] | ||
# A lot of test cases depend on etree, let's allow pylint to load it | ||
extension-pkg-allow-list=lxml.etree | ||
# We use isort for sorting our imports, so nevermind what pylint thinks | ||
disable=wrong-import-order | ||
# Add . to the PYTHONPATH so pylint knows test cases can import basic_test_case | ||
init-hook="import sys; sys.path.append('.')" |
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,5 +1,5 @@ | ||
sudo: required | ||
dist: xenial | ||
dist: bionic | ||
|
||
language: python | ||
python: | ||
|
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,32 @@ | ||
# Contributing to the documentation | ||
|
||
## Edit the files | ||
|
||
To contribute to the ReadAlongs Studio documentation, edit the `.rst` files in | ||
this folder. | ||
|
||
## Build the documentation locally | ||
|
||
To build the documention for local inspection, run one of these commands, | ||
which will build the documentation in `./_build/html/` or | ||
`./_build/singlehtml/`: | ||
|
||
make html # multi-page HTML site | ||
make singlehtml # single-page HTML document | ||
|
||
## View the documentation locally | ||
|
||
To view the documentation, run an HTTP server in the directory where the build | ||
is found, e.g., | ||
|
||
cd _build/html | ||
python3 -m http.server | ||
|
||
and navigate to http://127.0.0.1:8000 to view the results (or whatever port | ||
your local web server displays). | ||
|
||
## Publish the changes | ||
|
||
Once your changes are pushed to GitHub and merged into `master` via a Pull | ||
Request, the documentation will be automatically built and published to | ||
https://readalong-studio.readthedocs.io/en/latest/ |
Oops, something went wrong.