-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
1,610 additions
and
2 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,11 @@ | ||
#!/bin/bash | ||
|
||
echo "Getting started" | ||
|
||
# Bundle docs into zero-dependency HTML file | ||
npx redoc-cli bundle openapi.yaml && \ | ||
mv redoc-static.html index.html && \ | ||
echo "Changed name from redoc-static.html to index.html" && \ | ||
# Add favicon | ||
sed -i '7 i \ \ <link rel="icon" type="image/png" href="images/favicon.png"/>' index.html && \ | ||
echo -e "\nDone!" |
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,23 @@ | ||
name: Build docs | ||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Build docs | ||
run: ./.github/scripts/create-redoc-static-html.sh | ||
- name: Deploy to GitHub Pages | ||
uses: peaceiris/actions-gh-pages@v3 # https://github.com/peaceiris/actions-gh-pages | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
publish_dir: . | ||
force_orphan: true | ||
exclude_assets: '.github,openapi.yaml,.redocly.yaml,LICENSE,README.md,make.sh' | ||
|
||
permissions: | ||
contents: write |
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,2 +1,11 @@ | ||
# ssc | ||
Holds artifacts created by the SSC | ||
![SSC Logo](images/SSC_logo_black.png) | ||
|
||
# SSC - Scheduling Standards Consortium | ||
|
||
Convoy, J.B. Hunt and Uber Freight formed the Scheduling Standards Consortium (SSC) to simplify the integration of systems across the fragmented ecosystem between shippers, carriers and intermediaries and create a more efficient appointment scheduling process. | ||
|
||
For more details about the Consortium, check out [freightapis.org](https://www.freightapis.org/). | ||
|
||
## Feedback and Discussion | ||
|
||
Please use the [discussions tab](https://github.com/freightapis/ssc-beta/discussions) to leave feedback on the specification. If you find any specific issues with the specifications, please create an issue on the [issues tab](https://github.com/freightapis/ssc-beta/issues). |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.