-
Notifications
You must be signed in to change notification settings - Fork 8
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
9 changed files
with
129 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
############### | ||
# folder # | ||
############### | ||
/**/DROP/ | ||
/**/TEMP/ | ||
/**/packages/ | ||
/**/bin/ | ||
/**/obj/ | ||
_site |
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 @@ | ||
############### | ||
# temp file # | ||
############### | ||
*.yml | ||
.manifest |
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,69 @@ | ||
{ | ||
"metadata": [ | ||
{ | ||
"src": [ | ||
{ | ||
"files": [ | ||
"**/Client/**.csproj" | ||
], | ||
"src": ".." | ||
} | ||
], | ||
"dest": "api", | ||
"disableGitFeatures": false, | ||
"properties": { | ||
"TargetFramework": "netstandard2.1" | ||
} | ||
} | ||
], | ||
"build": { | ||
"content": [ | ||
{ | ||
"files": [ | ||
"api/**.yml", | ||
"api/index.md" | ||
] | ||
}, | ||
{ | ||
"files": [ | ||
"toc.yml", | ||
"*.md" | ||
] | ||
} | ||
], | ||
"resource": [ | ||
{ | ||
"files": [ | ||
"images/**", | ||
"favicon.ico" | ||
] | ||
} | ||
], | ||
"overwrite": [ | ||
{ | ||
"files": [ | ||
], | ||
"exclude": [ | ||
"obj/**", | ||
"_site/**" | ||
] | ||
} | ||
], | ||
"dest": "_site", | ||
"globalMetadataFiles": [], | ||
"fileMetadataFiles": [], | ||
"template": [ | ||
"statictoc" | ||
], | ||
"globalMetadata": { | ||
"_appLogoPath": "images/influxdata-logo--symbol--white.png", | ||
"_disableContribution": true | ||
}, | ||
"postProcessors": [], | ||
"markdownEngineName": "markdig", | ||
"noLangKeyword": false, | ||
"keepFileLink": false, | ||
"cleanupCacheHistory": false, | ||
"disableGitFeatures": false | ||
} | ||
} |
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 @@ | ||
# influxdb3-csharp | ||
|
||
| Client | Description | API | | ||
|----------|------------------------------------------------------------------------------------------|---------------------------------------------------| | ||
| `Client` | The C# .NET client that provides an easy and convenient way to interact with InfluxDB 3. | [InfluxDB3.Client.html](api/InfluxDB3.Client.yml) | |
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,35 @@ | ||
#!/usr/bin/env bash | ||
|
||
# | ||
# Publish site to GitHub Pages | ||
# | ||
# How to run in Docker: | ||
# | ||
# docker run --rm -it \ | ||
# -v "${PWD}/docs":/code/docs \ | ||
# -v "${PWD}/.circleci":/code/.circleci \ | ||
# -v ~/.ssh:/root/.ssh \ | ||
# -v ~/.gitconfig:/root/.gitconfig \ | ||
# -w /code \ | ||
# bitnami/git:latest /code/docs/publish-site.sh | ||
# | ||
|
||
set -ev | ||
|
||
echo "# Clone client and switch to branch for GH-Pages" | ||
git clone -b gh-pages git@github.com:InfluxCommunity/influxdb3-csharp.git /code/influxdb3-csharp | ||
|
||
echo "# Remove old pages" | ||
rm -r /code/influxdb3-csharp/* | ||
|
||
echo "# Copy new docs" | ||
cp -Rf /code/docs/_site/* /code/influxdb3-csharp/ | ||
|
||
echo "# Copy CircleCI" | ||
cp -R /code/.circleci/ /code/influxdb3-csharp/ | ||
|
||
echo "# Deploy site" | ||
cd /code/influxdb3-csharp/ || exit | ||
git add -f . | ||
git -c commit.gpgsign=false commit -m "Pushed the latest Docs to GitHub pages [skip CI]" | ||
git push -fq origin gh-pages |
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,3 @@ | ||
- name: InfluxDB3.Client API | ||
href: api/ | ||
homepage: api/InfluxDB3.Client.yml |