Skip to content

Commit c6e5ef4

Browse files
committed
feat: initial working version
1 parent 0cd04e9 commit c6e5ef4

File tree

7 files changed

+1062
-0
lines changed

7 files changed

+1062
-0
lines changed

.drone.yml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
kind: pipeline
2+
name: com.kapeli.main
3+
4+
steps:
5+
- name: clone
6+
image: alpine/git
7+
commands:
8+
- git clone https://github.com/Kapeli/feeds.git workspace/feeds
9+
- git clone https://github.com/Kapeli/Dash-X-Platform-Resources.git workspace/resources
10+
11+
- name: generate-docset-list
12+
image: python:3-alpine
13+
commands:
14+
- python -m venv .venv
15+
- source .venv/bin/activate
16+
- pip install pypng
17+
-> ./process_dash_feeds.py
18+
--manifest=docsets.json
19+
--blacklist=blacklist.json
20+
--resource-dir=workspace/resources
21+
workspace/feeds
22+
workspace/output.json
23+
24+
- name: update-api
25+
image: python:3-alpine
26+
commands: cat workspace/output.json

.gitignore

+8
Original file line numberDiff line numberDiff line change
@@ -102,3 +102,11 @@ venv.bak/
102102

103103
# mypy
104104
.mypy_cache/
105+
106+
# VS Code
107+
/.vscode
108+
109+
# Job specific paths.
110+
/workspace/feeds
111+
/workspace/resources
112+
/workspace/output.json

blacklist.json

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
[
2+
"Angular.dart",
3+
"AngularTS",
4+
"Apple_Guides_and_Sample_Code",
5+
"Git",
6+
"Gradle_Groovy_API",
7+
"Jade",
8+
"MATLAB",
9+
"Man_Pages",
10+
"OpenCV_C",
11+
"OpenCV_C++",
12+
"OpenCV_Java",
13+
"OpenCV_Python",
14+
"OS_X",
15+
"Ruby_Installed_Gems",
16+
"XUL",
17+
"iOS",
18+
"tvOS",
19+
"watchOS"
20+
]

0 commit comments

Comments
 (0)