Skip to content

Commit 56e34ab

Browse files
refactor docs (#651)
1 parent de68078 commit 56e34ab

13 files changed

+320
-22
lines changed

.github/workflows/deploy_mkdocs.yml

+4-5
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ on:
88
# Rebuild website when docs have changed or code has changed
99
- "README.md"
1010
- "docs/**"
11-
- "mkdocs.yml"
1211
- "**.py"
1312
workflow_dispatch:
1413

@@ -28,16 +27,16 @@ jobs:
2827

2928
- name: Install dependencies
3029
run: |
31-
pip install --upgrade pip
32-
pip install \
30+
python -m pip install --upgrade pip
31+
python -m pip install \
3332
stac_fastapi/api[docs] \
3433
stac_fastapi/types[docs] \
3534
stac_fastapi/extensions[docs] \
3635
3736
- name: update API docs
3837
run: |
3938
pdocs as_markdown \
40-
--output_dir docs/api/ \
39+
--output_dir docs/src/api/ \
4140
--exclude_source \
4241
--overwrite \
4342
stac_fastapi
@@ -51,4 +50,4 @@ jobs:
5150
POSTGRES_HOST_WRITER: localhost
5251

5352
- name: Deploy docs
54-
run: mkdocs gh-deploy --force
53+
run: mkdocs gh-deploy --force -f docs/mkdocs.yml

CONTRIBUTING.md

+12-12
Original file line numberDiff line numberDiff line change
@@ -5,31 +5,31 @@ Issues and pull requests are more than welcome.
55
**dev install**
66

77
```bash
8-
$ git clone https://github.com/stac-utils/stac-fastapi.git
9-
$ cd stac-fastapi
10-
$ pip install -e stac_fastapi/api[dev]
8+
git clone https://github.com/stac-utils/stac-fastapi.git
9+
cd stac-fastapi
10+
python -m pip install -e stac_fastapi/api[dev]
1111
```
1212

13-
**Python3.8 only**
13+
**pre-commit**
1414

15-
This repo is set to use `pre-commit` to run *ruff*, *pydocstring*, *black* ("uncompromising Python code formatter") and mypy when committing new code.
15+
This repo is set to use `pre-commit` to run *ruff*, *pydocstring* and mypy when committing new code.
1616

1717
```bash
18-
$ pre-commit install
18+
pre-commit install
1919
```
2020

2121
### Docs
2222

2323
```bash
24-
$ git clone https://github.com/stac-utils/stac-fastapi.git
25-
$ cd stac-fastapi
26-
$ pip install -e stac_fastapi/api["docs"]
24+
git clone https://github.com/stac-utils/stac-fastapi.git
25+
cd stac-fastapi
26+
python pip install -e stac_fastapi/api["docs"]
2727
```
2828

2929
Hot-reloading docs:
3030

3131
```bash
32-
$ mkdocs serve
32+
$ mkdocs serve -f docs/mkdocs.yml
3333
```
3434

3535
To manually deploy docs (note you should never need to do this because GitHub
@@ -38,11 +38,11 @@ Actions deploys automatically for new commits.):
3838
```bash
3939
Create API documentations
4040
$ pdocs as_markdown \
41-
--output_dir docs/api/ \
41+
--output_dir docs/src/api/ \
4242
--exclude_source \
4343
--overwrite \
4444
stac_fastapi
4545

4646
# deploy
47-
$ mkdocs gh-deploy
47+
$ mkdocs gh-deploy -f docs/mkdocs.yml
4848
```

docs/contributing.md

-1
This file was deleted.

docs/index.md

-1
This file was deleted.

mkdocs.yml docs/mkdocs.yml

+6-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,10 @@ site_description: STAC FastAPI.
44
# Repository
55
repo_name: "stac-utils/stac-fastapi"
66
repo_url: "https://github.com/stac-utils/stac-fastapi"
7-
edit_uri: "blob/master/docs/src/"
7+
edit_uri: "blob/main/docs/src/"
8+
9+
docs_dir: 'src'
10+
site_dir: 'build'
811

912
# Social links
1013
extra:
@@ -15,6 +18,7 @@ extra:
1518
# Layout
1619
nav:
1720
- Home: "index.md"
21+
- Tips and Tricks: tips-and-tricks.md
1822
- API:
1923
- packages: api/stac_fastapi/index.md
2024
- stac_fastapi.api:
@@ -70,9 +74,9 @@ nav:
7074
- search: api/stac_fastapi/types/search.md
7175
- stac: api/stac_fastapi/types/stac.md
7276
- version: api/stac_fastapi/types/version.md
77+
- Performance Benchmarks: benchmarks.html
7378
- Development - Contributing: "contributing.md"
7479
- Release Notes: "release-notes.md"
75-
- Tips and Tricks: tips-and-tricks.md
7680

7781
plugins:
7882
- search

docs/release-notes.md

-1
This file was deleted.

0 commit comments

Comments
 (0)