Skip to content

Commit 78ad0a5

Browse files
Disable check for values list (#10)
* Disable check for values list Signed-off-by: ramseymcgrath <ramseymcgrath@gmail.com> Co-authored-by: ramseymcgrath <ramseymcgrath@gmail.com> Co-authored-by: Ramsey McGrath <2006510+ramseymcgrath@users.noreply.github.com>
1 parent 8ae7a55 commit 78ad0a5

File tree

4 files changed

+263
-126
lines changed

4 files changed

+263
-126
lines changed

.github/dependabot.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,15 @@
55

66
version: 2
77
updates:
8-
- package-ecosystem: "github-actions" # See documentation for possible values
9-
directory: "/.github" # Location of package manifests
8+
- package-ecosystem: "github-actions"
9+
directory: "/.github/workflows"
1010
schedule:
1111
interval: "weekly"
12-
- package-ecosystem: "pip" # See documentation for possible values
13-
directory: "/src" # Location of package manifests
12+
- package-ecosystem: "pip"
13+
directory: "/proxy/src"
14+
schedule:
15+
interval: "weekly"
16+
- package-ecosystem: "docker"
17+
directory: "/proxy"
1418
schedule:
1519
interval: "weekly"
16-

examples/allowed_params.json.example

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
{
2+
"rss" : {
3+
"genre": "str",
4+
"author": "str",
5+
"artist": "str",
6+
"album": "str",
7+
"track": "str",
8+
"publisher": "str",
9+
"label": "str",
10+
"channel": "str",
11+
"lang": "str",
12+
"feed": "str"
13+
},
14+
"api" : {
15+
"t": "str",
16+
"q": "str",
17+
"apikey": "str",
18+
"cat": "str",
19+
"limit": "int",
20+
"offset": "int",
21+
"imdbid": "str",
22+
"tvdbid": "int",
23+
"rid": "int",
24+
"season": "int",
25+
"ep": "int",
26+
"o": "str",
27+
"extended": "int",
28+
"id": "str",
29+
"r": "str",
30+
"lang": "str",
31+
"profile": "str",
32+
"title": "str",
33+
"year": "int",
34+
"rating": "string",
35+
"votes": "int",
36+
"tagline": "str",
37+
"runtime": "int",
38+
"trailer": "str",
39+
"homepage": "str",
40+
"country": "str",
41+
"genre": "str",
42+
"director": "str",
43+
"writer": "str",
44+
"cast": "str",
45+
"actor": "str",
46+
"release": "str",
47+
"top250": "int",
48+
"imdbvotes": "int",
49+
"downloaded": "str",
50+
"sort": "str",
51+
"order": "str",
52+
"set": "str",
53+
"episode": "int"
54+
}
55+
}

proxy/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ COPY ./proxy/src/proxy.py /app/proxy.py
1313
EXPOSE 8080
1414
ENV INDEXER_URLS_JSON=/config/indexer_urls.json
1515
ENV API_KEYS_FILE=/config/api_keys.json
16+
ENV PARAMETERS_CONFIG_FILE = /config/allowed_parameters.json
1617
ENV DD_AGENT_HOST=localhost
1718
ENV DD_DOGSTATSD_PORT=8125
1819

0 commit comments

Comments
 (0)