This file contains hidden or 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
version: "3.9" | |
services: | |
${APP_NAME}: | |
image: ghcr.io/${IMAGE_REPO}:${RELEASE_VERSION} | |
depends_on: | |
${APP_NAME}-litestream: | |
condition: service_healthy | |
restart: always | |
network_mode: bridge | |
ports: |
This file contains hidden or 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
version: "3.9" | |
services: | |
${APP_NAME}: | |
image: ghcr.io/${IMAGE_REPO}:${RELEASE_VERSION} | |
depends_on: | |
${APP_NAME}-litestream: | |
condition: service_healthy | |
restart: always | |
network_mode: bridge | |
ports: |
This file contains hidden or 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
version: "3.9" | |
services: | |
${APP_NAME}: | |
image: ghcr.io/${IMAGE_REPO}:${RELEASE_VERSION} | |
depends_on: | |
${APP_NAME}-litestream: | |
condition: service_healthy | |
restart: always | |
network_mode: bridge | |
ports: |
This file contains hidden or 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
version: "3.9" | |
services: | |
${APP_NAME}: | |
image: ghcr.io/${IMAGE_REPO}:${RELEASE_VERSION} | |
depends_on: | |
${APP_NAME}-litestream: | |
condition: service_healthy | |
restart: always | |
network_mode: bridge | |
ports: |
This file contains hidden or 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
version: "3.9" | |
services: | |
${APP_NAME}: | |
image: ghcr.io/${IMAGE_REPO}:${RELEASE_VERSION} | |
depends_on: | |
${APP_NAME}-litestream: | |
condition: service_healthy | |
restart: always | |
network_mode: bridge | |
ports: |
This file contains hidden or 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
## Ignore Visual Studio temporary files, build results, and | |
## files generated by popular Visual Studio add-ons. | |
## | |
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore | |
# User-specific files | |
*.rsuser | |
*.suo | |
*.user | |
*.userosscache |
This file contains hidden or 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
{{ | |
var AppSvgs = { | |
'action/home.svg': 'home', | |
'action/bug_report.svg': 'debug', | |
'hardware/cast.svg': 'connect', | |
'hardware/security.svg': 'auth', | |
'toggle/check_box.svg': 'check_box_on', | |
'toggle/check_box_outline_blank.svg': 'check_box_off', | |
'navigation/double_arrow.svg': 'play', | |
'navigation/first_page.svg': 'chevron-first', |
This file contains hidden or 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
<Project Sdk="Microsoft.NET.Sdk"> | |
<PropertyGroup> | |
<TargetFramework>net8.0</TargetFramework> | |
<Nullable>enable</Nullable> | |
<ImplicitUsings>enable</ImplicitUsings> | |
<OutputType>Exe</OutputType> | |
<NoWarn>1591</NoWarn> | |
</PropertyGroup> |
This file contains hidden or 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
<?xml version="1.0" encoding="utf-8"?> | |
<configuration> | |
<packageSources> | |
<add key="ServiceStack MyGet feed" value="https://www.myget.org/F/servicestack" /> | |
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" /> | |
</packageSources> | |
</configuration> |
This file contains hidden or 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
<Project Sdk="Microsoft.NET.Sdk"> | |
<PropertyGroup> | |
<TargetFrameworks>net8.0</TargetFrameworks> | |
</PropertyGroup> | |
<ItemGroup> | |
<PackageReference Include="NUnit" Version="3.13.*" /> | |
<PackageReference Include="NUnit3TestAdapter" Version="4.1.*" /> | |
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.*" /> |