-
Notifications
You must be signed in to change notification settings - Fork 14
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 #124 from ga4gh-discovery/develop
Release 1.0
- Loading branch information
Showing
36 changed files
with
4,166 additions
and
318 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 |
---|---|---|
|
@@ -60,3 +60,6 @@ Session.vim | |
|
||
#********** IntelliJ files ****** | ||
*.iml | ||
|
||
# built docs | ||
built_docs/ |
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,5 @@ | ||
[submodule "clyde"] | ||
path = hugo/themes/clyde | ||
url = https://github.com/DNAstack/clyde.git | ||
branch = v1.1.1 | ||
|
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
run: build_api_docs | ||
echo "start run" | ||
cd hugo && hugo serve -D | ||
build: build_api_docs | ||
echo "start doc build" | ||
git submodule update --init --recursive | ||
echo "start hugo build" | ||
cd hugo && hugo --minify -d ../built_docs/ | ||
echo "end build" | ||
build_prod: build_api_docs | ||
echo "start prod doc build" | ||
echo -e "\033[33mUSE MAKE BUILD FOR TESTING LOCALLY, DON'T TRACK docs/!\033[0m" | ||
git submodule update --init --recursive | ||
echo "start hugo build" | ||
cd hugo && hugo --minify -d ../docs/ | ||
echo "end prod build" | ||
build_api_docs: | ||
echo "start api docs build" | ||
redoc-cli bundle spec/api.yaml | ||
mkdir -p `dirname ./hugo/content/api/index.html` | ||
mv ./redoc-static.html ./hugo/content/api/index.html | ||
clean: | ||
rm -rf hugo/docs/ docs/ built_docs/ hugo/built_docs/ hugo/content/api/index.html |
Oops, something went wrong.