mirror of
https://github.com/rjNemo/fastapi
synced 2026-06-12 13:36:41 +00:00
✏️ Tweak typos and configs (#837)
This commit is contained in:
parent
6a20078259
commit
7b3319ddab
7 changed files with 51 additions and 32 deletions
10
.travis.yml
10
.travis.yml
|
|
@ -25,8 +25,8 @@ after_script:
|
||||||
- bash <(curl -s https://codecov.io/bash)
|
- bash <(curl -s https://codecov.io/bash)
|
||||||
|
|
||||||
deploy:
|
deploy:
|
||||||
provider: script
|
provider: script
|
||||||
script: bash scripts/deploy.sh
|
script: bash scripts/deploy.sh
|
||||||
on:
|
on:
|
||||||
tags: true
|
tags: true
|
||||||
python: "3.6"
|
python: "3.6"
|
||||||
|
|
|
||||||
|
|
@ -5,8 +5,8 @@
|
||||||
<em>FastAPI framework, high performance, easy to learn, fast to code, ready for production</em>
|
<em>FastAPI framework, high performance, easy to learn, fast to code, ready for production</em>
|
||||||
</p>
|
</p>
|
||||||
<p align="center">
|
<p align="center">
|
||||||
<a href="https://travis-ci.org/tiangolo/fastapi" target="_blank">
|
<a href="https://travis-ci.com/tiangolo/fastapi" target="_blank">
|
||||||
<img src="https://travis-ci.org/tiangolo/fastapi.svg?branch=master" alt="Build Status">
|
<img src="https://travis-ci.com/tiangolo/fastapi.svg?branch=master" alt="Build Status">
|
||||||
</a>
|
</a>
|
||||||
<a href="https://codecov.io/gh/tiangolo/fastapi" target="_blank">
|
<a href="https://codecov.io/gh/tiangolo/fastapi" target="_blank">
|
||||||
<img src="https://codecov.io/gh/tiangolo/fastapi/branch/master/graph/badge.svg" alt="Coverage">
|
<img src="https://codecov.io/gh/tiangolo/fastapi/branch/master/graph/badge.svg" alt="Coverage">
|
||||||
|
|
@ -406,7 +406,7 @@ Used by FastAPI / Starlette:
|
||||||
|
|
||||||
* <a href="http://www.uvicorn.org" target="_blank"><code>uvicorn</code></a> - for the server that loads and serves your application.
|
* <a href="http://www.uvicorn.org" target="_blank"><code>uvicorn</code></a> - for the server that loads and serves your application.
|
||||||
|
|
||||||
You can install all of these with `pip3 install fastapi[all]`.
|
You can install all of these with `pip install fastapi[all]`.
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -56,7 +56,7 @@ You can:
|
||||||
|
|
||||||
## Tweet about **FastAPI**
|
## Tweet about **FastAPI**
|
||||||
|
|
||||||
<a href="https://twitter.com/compose/tweet?text=I'm loving FastAPI because... https://github.com/tiangolo/fastapi cc @tiangolo" target="_blank">Tweet about **FastAPI**</a> and let me and others why you like it.
|
<a href="https://twitter.com/compose/tweet?text=I'm loving FastAPI because... https://github.com/tiangolo/fastapi cc @tiangolo" target="_blank">Tweet about **FastAPI**</a> and let me and others know why you like it.
|
||||||
|
|
||||||
## Let me know how are you using **FastAPI**
|
## Let me know how are you using **FastAPI**
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -5,8 +5,8 @@
|
||||||
<em>FastAPI framework, high performance, easy to learn, fast to code, ready for production</em>
|
<em>FastAPI framework, high performance, easy to learn, fast to code, ready for production</em>
|
||||||
</p>
|
</p>
|
||||||
<p align="center">
|
<p align="center">
|
||||||
<a href="https://travis-ci.org/tiangolo/fastapi" target="_blank">
|
<a href="https://travis-ci.com/tiangolo/fastapi" target="_blank">
|
||||||
<img src="https://travis-ci.org/tiangolo/fastapi.svg?branch=master" alt="Build Status">
|
<img src="https://travis-ci.com/tiangolo/fastapi.svg?branch=master" alt="Build Status">
|
||||||
</a>
|
</a>
|
||||||
<a href="https://codecov.io/gh/tiangolo/fastapi" target="_blank">
|
<a href="https://codecov.io/gh/tiangolo/fastapi" target="_blank">
|
||||||
<img src="https://codecov.io/gh/tiangolo/fastapi/branch/master/graph/badge.svg" alt="Coverage">
|
<img src="https://codecov.io/gh/tiangolo/fastapi/branch/master/graph/badge.svg" alt="Coverage">
|
||||||
|
|
@ -406,7 +406,7 @@ Used by FastAPI / Starlette:
|
||||||
|
|
||||||
* <a href="http://www.uvicorn.org" target="_blank"><code>uvicorn</code></a> - for the server that loads and serves your application.
|
* <a href="http://www.uvicorn.org" target="_blank"><code>uvicorn</code></a> - for the server that loads and serves your application.
|
||||||
|
|
||||||
You can install all of these with `pip3 install fastapi[all]`.
|
You can install all of these with `pip install fastapi[all]`.
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
||||||
|
|
|
||||||
35
mkdocs.yml
35
mkdocs.yml
|
|
@ -5,8 +5,8 @@ site_url: https://fastapi.tiangolo.com/
|
||||||
theme:
|
theme:
|
||||||
name: 'material'
|
name: 'material'
|
||||||
palette:
|
palette:
|
||||||
primary: 'teal'
|
primary: 'teal'
|
||||||
accent: 'amber'
|
accent: 'amber'
|
||||||
logo: 'img/icon-white.svg'
|
logo: 'img/icon-white.svg'
|
||||||
favicon: 'img/favicon.png'
|
favicon: 'img/favicon.png'
|
||||||
|
|
||||||
|
|
@ -102,10 +102,27 @@ nav:
|
||||||
- Release Notes: release-notes.md
|
- Release Notes: release-notes.md
|
||||||
|
|
||||||
markdown_extensions:
|
markdown_extensions:
|
||||||
- markdown.extensions.codehilite:
|
- toc:
|
||||||
guess_lang: false
|
permalink: true
|
||||||
- markdown_include.include:
|
- markdown.extensions.codehilite:
|
||||||
base_path: docs
|
guess_lang: false
|
||||||
- admonition
|
- markdown_include.include:
|
||||||
- codehilite
|
base_path: docs
|
||||||
- extra
|
- admonition
|
||||||
|
- codehilite
|
||||||
|
- extra
|
||||||
|
|
||||||
|
extra:
|
||||||
|
social:
|
||||||
|
- type: 'github'
|
||||||
|
link: 'https://github.com/tiangolo/typer'
|
||||||
|
- type: 'twitter'
|
||||||
|
link: 'https://twitter.com/tiangolo'
|
||||||
|
- type: 'linkedin'
|
||||||
|
link: 'https://www.linkedin.com/in/tiangolo'
|
||||||
|
- type: 'rss'
|
||||||
|
link: 'https://dev.to/tiangolo'
|
||||||
|
- type: 'medium'
|
||||||
|
link: 'https://medium.com/@tiangolo'
|
||||||
|
- type: 'globe'
|
||||||
|
link: 'https://tiangolo.com'
|
||||||
|
|
|
||||||
|
|
@ -8,17 +8,17 @@ author = "Sebastián Ramírez"
|
||||||
author-email = "tiangolo@gmail.com"
|
author-email = "tiangolo@gmail.com"
|
||||||
home-page = "https://github.com/tiangolo/fastapi"
|
home-page = "https://github.com/tiangolo/fastapi"
|
||||||
classifiers = [
|
classifiers = [
|
||||||
'Intended Audience :: Information Technology',
|
"Intended Audience :: Information Technology",
|
||||||
'Intended Audience :: System Administrators',
|
"Intended Audience :: System Administrators",
|
||||||
'Operating System :: OS Independent',
|
"Operating System :: OS Independent",
|
||||||
'Programming Language :: Python :: 3',
|
"Programming Language :: Python :: 3",
|
||||||
'Programming Language :: Python',
|
"Programming Language :: Python",
|
||||||
'Topic :: Internet',
|
"Topic :: Internet",
|
||||||
'Topic :: Software Development :: Libraries :: Application Frameworks',
|
"Topic :: Software Development :: Libraries :: Application Frameworks",
|
||||||
'Topic :: Software Development :: Libraries :: Python Modules',
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
||||||
'Topic :: Software Development :: Libraries',
|
"Topic :: Software Development :: Libraries",
|
||||||
'Topic :: Software Development',
|
"Topic :: Software Development",
|
||||||
'Typing :: Typed',
|
"Typing :: Typed",
|
||||||
"Development Status :: 4 - Beta",
|
"Development Status :: 4 - Beta",
|
||||||
"Environment :: Web Environment",
|
"Environment :: Web Environment",
|
||||||
"Framework :: AsyncIO",
|
"Framework :: AsyncIO",
|
||||||
|
|
|
||||||
|
|
@ -11,3 +11,5 @@ fi
|
||||||
export PYTHONPATH=./docs/src
|
export PYTHONPATH=./docs/src
|
||||||
pytest --cov=fastapi --cov=tests --cov=docs/src --cov-report=term-missing ${@}
|
pytest --cov=fastapi --cov=tests --cov=docs/src --cov-report=term-missing ${@}
|
||||||
bash ./scripts/lint.sh
|
bash ./scripts/lint.sh
|
||||||
|
# Check README.md is up to date
|
||||||
|
diff --brief docs/index.md README.md
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue