Skip to content

Commit be948c7

Browse files
authored
docs: added mk documentation (#24)
* broke up and moved into docs folder * updated notebooks in docs * removed remote branch override * added doc link and updates notebook link * removed redudnant mkdocs.yml * added docs publish gh workflow * added git pull to doc deploy * added force to mkdocs * disable documentation deploy on pull requests
1 parent e5fa814 commit be948c7

19 files changed

+706
-553
lines changed

.github/workflows/docs-publish.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Deploy Documentation
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
# pull_request:
7+
# branches: [ main ]
8+
9+
jobs:
10+
deploy:
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- uses: actions/checkout@v2
15+
- name: Set up Python
16+
uses: actions/setup-python@v2
17+
with:
18+
python-version: '3.x'
19+
- name: Install dependencies
20+
run: |
21+
python -m pip install --upgrade pip
22+
if [ -f requirements-dev.txt ]; then pip install -r requirements-dev.txt; fi
23+
- name: Build and Deploy
24+
run: |
25+
mkdocs gh-deploy --force

.vimspector.json

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"$schema": "https://puremourning.github.io/vimspector/schema/vimspector.schema.json",
3+
"configurations": {
4+
"dgraphpandas: main": {
5+
"adapter": "debugpy",
6+
"configuration": {
7+
"request": "launch",
8+
"type": "python",
9+
"cwd": "${workspaceRoot}",
10+
"console": "integratedTerminal",
11+
"module": "dgraphpandas",
12+
"args": [
13+
"-c",
14+
"samples/netflix/dgraphpandas.json",
15+
"-ck",
16+
"genre",
17+
"-f",
18+
"samples/netflix/input/genre.csv",
19+
"-o",
20+
"samples/netflix/output"
21+
]
22+
}
23+
}
24+
}
25+
}

0 commit comments

Comments
 (0)