File tree Expand file tree Collapse file tree 4 files changed +263
-126
lines changed Expand file tree Collapse file tree 4 files changed +263
-126
lines changed Original file line number Diff line number Diff line change 5
5
6
6
version : 2
7
7
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 "
10
10
schedule :
11
11
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"
14
18
schedule :
15
19
interval : " weekly"
16
-
Original file line number Diff line number Diff line change
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
+ }
Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ COPY ./proxy/src/proxy.py /app/proxy.py
13
13
EXPOSE 8080
14
14
ENV INDEXER_URLS_JSON=/config/indexer_urls.json
15
15
ENV API_KEYS_FILE=/config/api_keys.json
16
+ ENV PARAMETERS_CONFIG_FILE = /config/allowed_parameters.json
16
17
ENV DD_AGENT_HOST=localhost
17
18
ENV DD_DOGSTATSD_PORT=8125
18
19
You can’t perform that action at this time.
0 commit comments