diff --git a/appveyor.yml b/appveyor.yml index 0ccfc1f..5116020 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -37,13 +37,14 @@ after_build: - ps: | if(-Not $env:APPVEYOR_PULL_REQUEST_TITLE) { - docfx docfx.json git config --global credential.helper store Add-Content "$env:USERPROFILE\.git-credentials" "https://$($env:access_token):x-oauth-basic@github.com`n" git config --global core.autocrlf false git config --global user.email $env:op_build_user_email git config --global user.name $env:op_build_user git clone https://github.com/unosquare/tubular-dotnet.git -b gh-pages origin_site -q + git clone -b documentation https://github.com/unosquare/best-practices.git -q + docfx docfx.json --logLevel Error Copy-Item origin_site/.git _site -recurse CD _site Copy-Item README.html index.html -force diff --git a/docfx.json b/docfx.json index 945a4ea..1d54d58 100644 --- a/docfx.json +++ b/docfx.json @@ -11,6 +11,9 @@ } ], "build": { + "template": [ + "best-practices/templates/default" + ], "content": [ { "files": [ "**/*.yml" ], @@ -23,12 +26,14 @@ ], "resource": [ { - "files": [ ] + "files": [ "best-practices/resources/**", "tubular.png"] } ], "globalMetadata": { "_appTitle": "Unosquare Tubular", - "_enableSearch": true + "_enableSearch": true, + "_appLogoPath": "best-practices/resources/images/logo.png", + "_docLogo": "tubular.png" }, "dest": "_site" } diff --git a/tubular.png b/tubular.png new file mode 100644 index 0000000..9cb21db Binary files /dev/null and b/tubular.png differ