Skip to content

Commit 129ccdd

Browse files
authored
Add sponsorship page (#2877)
1 parent 1695942 commit 129ccdd

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ $ pip install uvicorn
5858

5959
## Example
6060

61-
```python title="example.py"
61+
```python title="main.py"
6262
from starlette.applications import Starlette
6363
from starlette.responses import JSONResponse
6464
from starlette.routing import Route
@@ -77,11 +77,9 @@ app = Starlette(debug=True, routes=routes)
7777
Then run the application using Uvicorn:
7878

7979
```shell
80-
$ uvicorn example:app
80+
$ uvicorn main:app
8181
```
8282

83-
For a more complete example, see [encode/starlette-example](https://github.com/encode/starlette-example).
84-
8583
## Dependencies
8684

8785
Starlette only requires `anyio`, and the following are optional:

docs/sponsorship.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Coming soon...

mkdocs.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,14 +53,19 @@ nav:
5353
- Community:
5454
- Third Party Packages: "third-party-packages.md"
5555
- Contributing: "contributing.md"
56+
- Sponsorship: "sponsorship.md"
5657

5758
markdown_extensions:
59+
- attr_list
5860
- admonition
5961
- pymdownx.highlight
6062
- pymdownx.superfences
6163
- pymdownx.details
6264
- pymdownx.tabbed:
6365
alternate_style: true
66+
- pymdownx.emoji:
67+
emoji_index: !!python/name:material.extensions.emoji.twemoji
68+
emoji_generator: !!python/name:material.extensions.emoji.to_svg
6469

6570
watch:
6671
- starlette

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ trio==0.28.0
1616
# Documentation
1717
black==25.1.0
1818
mkdocs==1.6.1
19-
mkdocs-material==9.6.1
19+
mkdocs-material==9.6.5
2020
mkdocstrings-python==1.13.0
2121

2222
# Packaging

0 commit comments

Comments
 (0)