Skip to content

Commit 7d4d36f

Browse files
committed
fixed a string interpolation bug
1 parent ebe10de commit 7d4d36f

5 files changed

Lines changed: 8 additions & 6 deletions

File tree

ComicVine.API/ComicVine.API.csproj

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
<PrivateAssets>all</PrivateAssets>
1818
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1919
</PackageReference>
20-
<PackageReference Include="StackExchange.Redis" Version="2.6.86" />
2120
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.2.3" />
2221
</ItemGroup>
2322

@@ -35,7 +34,7 @@
3534
<AdditionalFiles Include="Pages\Shared\Components\Lock.cshtml" />
3635
<AdditionalFiles Include="Pages\Shared\Components\Navigation.cshtml" />
3736
<AdditionalFiles Include="Pages\Shared\Components\Pin.cshtml" />
38-
<AdditionalFiles Include="Pages\Shared\Components\Thread.cshtml" />
37+
<AdditionalFiles Include="Pages\Shared\Components\ThreadItems.cshtml" />
3938
</ItemGroup>
4039

4140
</Project>

ComicVine.API/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
## Setup
3-
- Set the connection string in the environment variable called `ConnectionStrings:comicvine_db`. eg (on windows)`$env:ConnectionStrings:comicvine_db = "Server=..."`
3+
- Set the connection string in the environment variable called `ConnectionStrings__comicvine_db`. eg (on windows`$env:ConnectionStrings__comicvine_db = "Server=..."`)
44
## Features
55
- Provides restful api for querying posts, threads, user profiles and more
66

@@ -9,6 +9,7 @@
99
- response UI
1010
- refactor internals
1111
- add search
12+
- add polling worker
1213
- add stats
1314
- default error pages for both api and web interface
1415
- better styling for api documentation

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# VinePlus
2+
3+
- you can download the binaries for the web project and seed in the [release](https://github.com/foderking/VinePlus/releases)

VinePlus.Polling/VinePlus.Polling.fsproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414

1515
<ItemGroup>
1616
<PackageReference Include="FSharp.Control.TaskSeq" Version="0.3.0" />
17-
<PackageReference Include="StackExchange.Redis" Version="2.6.104" />
1817
</ItemGroup>
1918

2019
<ItemGroup>

VinePlus.Seed/Program.fs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ let Seed() = task{
279279
// write files in set
280280
printfn "[+] writing posts_%d to json" set
281281
// do! writePostCsv redis $"posts_{set}.csv"
282-
do! writeFile redis postKey "posts_{set}.json"
282+
do! writeFile redis postKey $"posts_{set}.json"
283283
// empties key (next set starts on an empty key to minimize memory used)
284284
let! _ = redis.KeyDeleteAsync(postKey)
285285
()
@@ -290,7 +290,7 @@ let Seed() = task{
290290
// write to csv file
291291
printfn "[+] writing posts_%d to json" totalSets
292292
// do! writePostCsv redis $"posts_{totalSets}.csv"
293-
do! writeFile redis postKey "posts_{totalSets}.json"
293+
do! writeFile redis postKey $"posts_{totalSets}.json"
294294
}
295295

296296
[<EntryPoint>]

0 commit comments

Comments
 (0)