Skip to content

Commit a9c7cc3

Browse files
committed
added mkdocs - Adithay S K
1 parent 58728fb commit a9c7cc3

File tree

3 files changed

+67
-24
lines changed

3 files changed

+67
-24
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Deploy MkDocs to GitHub Pages
2+
3+
on:
4+
push:
5+
branches:
6+
- main # Set this to your default branch name
7+
permissions:
8+
contents: write
9+
jobs:
10+
deploy:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v3
14+
- uses: actions/setup-python@v4
15+
with:
16+
python-version: 3.x
17+
- uses: actions/cache@v2
18+
with:
19+
key: ${{ github.ref }}
20+
path: .cache
21+
- run: pip install mkdocs-material
22+
- run: pip install mkdocs-jupyter
23+
- run: pip install mkdocs-exclude
24+
- run: pip install mkdocstrings[python]
25+
- run: mkdocs gh-deploy --force

README.md

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -52,30 +52,6 @@ To run the demo:
5252
python demo.py
5353
```
5454

55-
### Server
56-
57-
To start the VARAG server:
58-
59-
```bash
60-
python server.py
61-
```
62-
63-
## API Endpoints
64-
65-
VARAG provides the following API endpoints:
66-
67-
- Configure
68-
- Ingest
69-
- Search
70-
- Query
71-
72-
## Docker
73-
74-
Docker support is available for VARAG. (You may want to add specific instructions for using Docker here.)
75-
76-
## Explaining Vision Diagrams
77-
78-
VARAG has the capability to explain vision diagrams. (You might want to elaborate on this feature and how it works.)
7955

8056
## 🛠️ Contributing
8157

mkdocs.yml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,43 @@
11
site_name: My Docs
2+
site_name: VARAG Documentation
3+
repo_url: https://github.com/adithya-s-k/VARAG
4+
repo_name: adithya-s-k/VARAG
5+
edit_uri: edit/main/docs/
6+
7+
theme:
8+
name: material
9+
palette:
10+
scheme: slate
11+
primary: teal
12+
accent: light blue
13+
features:
14+
- navigation.tabs
15+
- navigation.sections
16+
- navigation.top
17+
- search.suggest
18+
- search.highlight
19+
20+
markdown_extensions:
21+
- pymdownx.highlight:
22+
anchor_linenums: true
23+
- pymdownx.inlinehilite
24+
- pymdownx.snippets
25+
- pymdownx.superfences
26+
- admonition
27+
- pymdownx.details
28+
- pymdownx.tabbed:
29+
alternate_style: true
30+
31+
nav:
32+
- Home: index.md
33+
- Getting Started: getting-started.md
34+
- Features: features.md
35+
- API Reference: api-reference.md
36+
- Contributing: contributing.md
37+
38+
extra:
39+
social:
40+
- icon: fontawesome/brands/github
41+
link: https://github.com/adithya-s-k/VARAG
42+
- icon: fontawesome/brands/python
43+
link: https://pypi.org/project/varag/

0 commit comments

Comments
 (0)