generated from e-lo/python-package-template
-
Notifications
You must be signed in to change notification settings - Fork 1
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 #2 from cal-itp/docs
Publish docs via GitHub Pages
- Loading branch information
Showing
13 changed files
with
145 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
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 |
---|---|---|
@@ -1,26 +1,27 @@ | ||
-## What existing problem does the pull request solve and why should we include it? | ||
# New Pull Request | ||
|
||
## What existing problem does the pull request solve and why should we include it? | ||
|
||
## What is the testing plan? | ||
|
||
*Demonstrate the code is solid by discussing how results are verified and covered by tests* | ||
*Demonstrate the code is solid by discussing how results are verified and covered by tests.* | ||
|
||
- [ ] Code for this PR is covered in tests | ||
- [ ] Code passes all existing tests | ||
- [ ] Code for this PR is covered in tests | ||
- [ ] Code passes all existing tests | ||
|
||
## Code formatting | ||
|
||
*Code should be PEP8 compliant before merging by running a package like [`black`](https://pypi.org/project/black/)* | ||
|
||
- [ ] Code linted | ||
- [ ] Code linted | ||
|
||
## Applicable Issues | ||
|
||
*Please do not create a Pull Request without creating an issue first.* | ||
|
||
*Put `closes #XXXX` in your comment to auto-close the issue that your PR fixes.* | ||
|
||
|
||
#### Issues List | ||
|
||
- closes... | ||
- closes... | ||
### Issues List | ||
|
||
- closes... | ||
- closes... |
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,20 @@ | ||
name: Publish docs | ||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
mkdocs: | ||
name: Publish docs | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
|
||
- name: Deploy docs | ||
uses: mhausenblas/mkdocs-deploy-gh-pages@master | ||
env: | ||
REQUIREMENTS: dev-requirements.txt | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
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,9 +1,8 @@ | ||
# Changelog | ||
|
||
## Version 0.0.1 (2021-05-03) | ||
Initial version of TransitStack viewer capable of: | ||
|
||
- importing transit stack data from gsheet or local csvs | ||
- visualizing relationships using digrams package (graphviz) | ||
Initial version of TransitStack viewer capable of: | ||
|
||
|
||
- importing transit stack data from gsheet or local csvs | ||
- visualizing relationships using digrams package (graphviz) |
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 |
---|---|---|
|
@@ -28,4 +28,4 @@ | |
handler: python | ||
rendering: | ||
show_root_heading: True | ||
heading_level: 2 | ||
heading_level: 2 |
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 |
---|---|---|
@@ -1,9 +1,12 @@ | ||
Transitstacks includes basic tools for downloading and viewing the [Cal-ITP](http://calitp.org) transit technology stack database including generating stack diagrams the example one below. | ||
# Transitstacks | ||
|
||
![](stack_diagram_-_functional_view.png) | ||
Transitstacks includes basic tools for downloading and viewing the [Cal-ITP](http://calitp.org) transit technology stack | ||
database including generating stack diagrams the example one below. | ||
|
||
## Licenses | ||
![Example stack diagram](stack_diagram_-_functional_view.png) | ||
|
||
- Code is offered as [AGPL 3.0](LICENSE) and developed on behalf of the [California Integrated Travel Project](http://calitp.org). | ||
- Data this code accesses and contains is offered as [CC BY-NC-SA 4.0](https://creativecommons.org/licenses/by-nc-sa/4.0/) and developed on behalf of the [California Integrated Travel Project](http://calitp.org). | ||
## Licenses | ||
|
||
- Code is offered as [AGPL 3.0](LICENSE) and developed on behalf of the [California Integrated Travel Project](http://calitp.org). | ||
- Data this code accesses and contains is offered as [CC BY-NC-SA 4.0](https://creativecommons.org/licenses/by-nc-sa/4.0/) and | ||
developed on behalf of the [California Integrated Travel Project](http://calitp.org). |
Oops, something went wrong.