mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
refactor(services): ♻📝 refresh service descriptions
This commit is contained in:
parent
6965ea727b
commit
523bb2fbe7
5 changed files with 6 additions and 8 deletions
4
.github/README.md
vendored
4
.github/README.md
vendored
|
|
@ -22,7 +22,7 @@
|
|||
<a href="https://dev.azure.com/collinbarrett/FilterLists/_build/latest?definitionId=27"><img alt="Azure DevOps builds" src="https://dev.azure.com/collinbarrett/FilterLists/_apis/build/status/Directory%20API?branchName=master" /></a>
|
||||
<a href="https://dev.azure.com/collinbarrett/FilterLists/_release?definitionId=3"><img alt="Azure DevOps releases" src="https://vsrm.dev.azure.com/collinbarrett/_apis/public/Release/badge/b06a3d5c-459e-4789-9735-0f5969006fe8/3/4" /></a>
|
||||
<a href="https://github.com/users/collinbarrett/packages/container/package/filterlists-directory-api"><img alt="Docker Image" src="https://img.shields.io/badge/docker%20image-directory--api-blue" /></a>
|
||||
<br/>An ASP.NET Core API CRUD-ing with a Postgres instance via EF Core.</p>
|
||||
<br/>An ASP.NET Core API serving the core FilterList information.</p>
|
||||
|
||||
<p align="center"><b>Archival API:</b>
|
||||
<a href="https://filterlists.com/api/?urls.primaryName=Archival"><img alt="Swagger UI" src="https://img.shields.io/website-up-down-green-red/http/shields.io.svg?label=Archival%20API" /></a>
|
||||
|
|
@ -30,7 +30,7 @@
|
|||
<a href="https://dev.azure.com/collinbarrett/FilterLists/_build/latest?definitionId=29"><img alt="Azure DevOps builds" src="https://dev.azure.com/collinbarrett/FilterLists/_apis/build/status/Archival%20API?branchName=master" /></a>
|
||||
<a href="https://dev.azure.com/collinbarrett/FilterLists/_release?definitionId=7"><img alt="Azure DevOps releases" src="https://vsrm.dev.azure.com/collinbarrett/_apis/public/Release/badge/b06a3d5c-459e-4789-9735-0f5969006fe8/7/8" /></a>
|
||||
<a href="https://github.com/users/collinbarrett/packages/container/package/filterlists-archival-api"><img alt="Docker Image" src="https://img.shields.io/badge/docker%20image-archival--api-blue" /></a>
|
||||
<br/>An ASP.NET Core app archiving and serving copies of FilterLists for mirrors and analysis.</p>
|
||||
<br/>An ASP.NET Core API archiving and serving copies of FilterLists for mirrors and analysis.</p>
|
||||
|
||||
<p align="center"><b>Reverse Proxy:</b>
|
||||
<a href="https://dev.azure.com/collinbarrett/FilterLists/_build/latest?definitionId=21"><img alt="Azure DevOps builds" src="https://dev.azure.com/collinbarrett/FilterLists/_apis/build/status/Reverse%20Proxy?branchName=master" /></a>
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
# init base
|
||||
FROM mcr.microsoft.com/dotnet/core/runtime-deps:3.1-alpine3.12 AS base
|
||||
LABEL org.opencontainers.image.description="filterlists.com | github.com/collinbarrett/filterlists | An ASP.NET Core app archiving and serving copies of FilterLists for mirrors and analysis."
|
||||
LABEL org.opencontainers.image.description="filterlists.com | github.com/collinbarrett/filterlists | An ASP.NET Core API archiving and serving copies of FilterLists for mirrors and analysis."
|
||||
WORKDIR /app
|
||||
EXPOSE 80
|
||||
|
||||
|
|
|
|||
|
|
@ -15,8 +15,7 @@ public static void AddSwaggerGen(this IServiceCollection services)
|
|||
o.SwaggerDoc("v1", new OpenApiInfo
|
||||
{
|
||||
Title = "FilterLists Archival API",
|
||||
Description =
|
||||
"FilterLists is the independent, comprehensive directory of filter and host lists for advertisements, trackers, malware, and annoyances.",
|
||||
Description = "An ASP.NET Core API archiving and serving copies of FilterLists for mirrors and analysis.",
|
||||
Version = "v1",
|
||||
//TermsOfService = "",
|
||||
Contact = new OpenApiContact {Name = "FilterLists", Url = new Uri("https://filterlists.com")},
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
# init base
|
||||
FROM mcr.microsoft.com/dotnet/core/runtime-deps:3.1-alpine AS base
|
||||
LABEL org.opencontainers.image.description="filterlists.com | github.com/collinbarrett/filterlists | An ASP.NET Core API CRUD-ing with a Postgres instance via EF Core."
|
||||
LABEL org.opencontainers.image.description="filterlists.com | github.com/collinbarrett/filterlists | An ASP.NET Core API serving the core FilterList information."
|
||||
WORKDIR /app
|
||||
EXPOSE 80
|
||||
|
||||
|
|
|
|||
|
|
@ -15,8 +15,7 @@ public static void AddSwaggerGen(this IServiceCollection services)
|
|||
o.SwaggerDoc("v1", new OpenApiInfo
|
||||
{
|
||||
Title = "FilterLists Directory API",
|
||||
Description =
|
||||
"FilterLists is the independent, comprehensive directory of filter and host lists for advertisements, trackers, malware, and annoyances.",
|
||||
Description = "An ASP.NET Core API serving the core FilterList information.",
|
||||
Version = "v1",
|
||||
//TermsOfService = "",
|
||||
Contact = new OpenApiContact {Name = "FilterLists", Url = new Uri("https://filterlists.com")},
|
||||
|
|
|
|||
Loading…
Reference in a new issue