Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/f7368d3d09a1dffc67535b58befd9ecc1d340909
You should set ROOT_URL correctly, otherwise the web may not work correctly.
7 changed files with
141 additions and
2 deletions
@ -0,0 +1,19 @@
/ / F o r f o r m a t d e t a i l s , s e e h t t p s : / / a k a . m s / d e v c o n t a i n e r . j s o n . F o r c o n f i g o p t i o n s , s e e t h e
/ / R E A D M E a t : h t t p s : / / g i t h u b . c o m / d e v c o n t a i n e r s / t e m p l a t e s / t r e e / m a i n / s r c / d o t n e t
{
"name" : "Readarr" ,
"image" : "mcr.microsoft.com/devcontainers/dotnet:1-6.0" ,
"features" : {
"ghcr.io/devcontainers/features/node:1" : {
"nodeGypDependencies" : true ,
"version" : "16" ,
"nvmVersion" : "latest"
}
} ,
"forwardPorts" : [ 8787 ] ,
"customizations" : {
"vscode" : {
"extensions" : [ "esbenp.prettier-vscode" ]
}
}
}
@ -0,0 +1,12 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for more information:
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
# https://containers.dev/guide/dependabot
version : 2
updates:
- package-ecosystem : "devcontainers"
directory : "/"
schedule:
interval : weekly
@ -125,6 +125,7 @@ coverage*.xml
coverage*.json
setup/Output/
*.~is
.mono
# .NET Core
project.lock.json
@ -0,0 +1,7 @@
{
"recommendations" : [
"esbenp.prettier-vscode" ,
"ms-dotnettools.csdevkit" ,
"ms-vscode-remote.remote-containers"
]
}
@ -0,0 +1,26 @@
{
"version" : "0.2.0" ,
"configurations" : [
{
/ / U s e I n t e l l i S e n s e t o f i n d o u t w h i c h a t t r i b u t e s e x i s t f o r C # d e b u g g i n g
/ / U s e h o v e r f o r t h e d e s c r i p t i o n o f t h e e x i s t i n g a t t r i b u t e s
/ / F o r f u r t h e r i n f o r m a t i o n v i s i t h t t p s : / / g i t h u b . c o m / d o t n e t / v s c o d e - c s h a r p / b l o b / m a i n / d e b u g g e r - l a u n c h j s o n . m d
"name" : "Run Readarr" ,
"type" : "coreclr" ,
"request" : "launch" ,
"preLaunchTask" : "build dotnet" ,
/ / I f y o u h a v e c h a n g e d t a r g e t f r a m e w o r k s , m a k e s u r e t o u p d a t e t h e p r o g r a m p a t h .
"program" : "${workspaceFolder}/_output/net6.0/Readarr" ,
"args" : [ ] ,
"cwd" : "${workspaceFolder}" ,
/ / F o r m o r e i n f o r m a t i o n a b o u t t h e ' c o n s o l e ' f i e l d , s e e h t t p s : / / a k a . m s / V S C o d e - C S - L a u n c h J s o n - C o n s o l e
"console" : "integratedTerminal" ,
"stopAtEntry" : false
} ,
{
"name" : ".NET Core Attach" ,
"type" : "coreclr" ,
"request" : "attach"
}
]
}
@ -0,0 +1,44 @@
{
"version" : "2.0.0" ,
"tasks" : [
{
"label" : "build dotnet" ,
"command" : "dotnet" ,
"type" : "process" ,
"args" : [
"msbuild" ,
"-restore" ,
"${workspaceFolder}/src/Readarr.sln" ,
"-p:GenerateFullPaths=true" ,
"-p:Configuration=Debug" ,
"-p:Platform=Posix" ,
"-consoleloggerparameters:NoSummary;ForceNoAlign"
] ,
"problemMatcher" : "$msCompile"
} ,
{
"label" : "publish" ,
"command" : "dotnet" ,
"type" : "process" ,
"args" : [
"publish" ,
"${workspaceFolder}/src/Readarr.sln" ,
"-property:GenerateFullPaths=true" ,
"-consoleloggerparameters:NoSummary;ForceNoAlign"
] ,
"problemMatcher" : "$msCompile"
} ,
{
"label" : "watch" ,
"command" : "dotnet" ,
"type" : "process" ,
"args" : [
"watch" ,
"run" ,
"--project" ,
"${workspaceFolder}/src/Readarr.sln"
] ,
"problemMatcher" : "$msCompile"
}
]
}
@ -139,16 +139,46 @@
</Otherwise>
</Choose>
<!--
Set architecture to RuntimeInformation.ProcessArchitecture if not specified -->
<Choose>
<When Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::ProcessArchitecture)' == 'X64'">
<PropertyGroup>
<Architecture>x64</Architecture>
</PropertyGroup>
</When>
<When Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::ProcessArchitecture)' == 'X86'">
<PropertyGroup>
<Architecture>x86</Architecture>
</PropertyGroup>
</When>
<When Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::ProcessArchitecture)' == 'Arm64'">
<PropertyGroup>
<Architecture>arm64</Architecture>
</PropertyGroup>
</When>
<When Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::ProcessArchitecture)' == 'Arm'">
<PropertyGroup>
<Architecture>arm</Architecture>
</PropertyGroup>
</When>
<Otherwise>
<PropertyGroup>
<Architecture></Architecture>
</PropertyGroup>
</Otherwise>
</Choose>
<PropertyGroup Condition="'$(IsWindows)' == 'true' and
'$(RuntimeIdentifier)' == ''">
<_UsingDefaultRuntimeIdentifier>true</_UsingDefaultRuntimeIdentifier>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<RuntimeIdentifier>win-$(Architecture) </RuntimeIdentifier>
</PropertyGroup>
<PropertyGroup Condition="'$(IsLinux)' == 'true' and
'$(RuntimeIdentifier)' == ''">
<_UsingDefaultRuntimeIdentifier>true</_UsingDefaultRuntimeIdentifier>
<RuntimeIdentifier>linux-x64</RuntimeIdentifier>
<RuntimeIdentifier>linux-$(Architecture) </RuntimeIdentifier>
</PropertyGroup>
<PropertyGroup Condition="'$(IsOSX)' == 'true' and