From a42c69049647f4fb731afc86c6eeb959248217e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Thu, 5 Nov 2020 21:50:37 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20Add=20deployment=20to=20Deta,=20?= =?UTF-8?q?the=20first=20gold=20sponsor=20=F0=9F=8E=89=20(#2303)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * 📝 Add docs for sponsors * 📝 Add docs for deploying on Deta * 🍱 Add Deta docs screenshots * ♻️ Refactor and separate deployment docs * 📝 Update internal docs links to Deployment * 📝 Update links in Deta tutorial * 🍱 Update sponsors images * 🔧 Use sponsors data from YAML * 📝 Update sponsors in languages docs * ✨ Update docs generation scripts * ✅ Update README.md testing * 📝 Update main README * 🔧 Update fastapi-people action handling individual sponsors * ✏️ Fix typos in Deta tutorial --- .github/actions/people/app/main.py | 6 +- README.md | 10 + docs/en/data/sponsors.yml | 8 + docs/en/docs/alternatives.md | 2 +- docs/en/docs/async.md | 2 +- docs/en/docs/deployment.md | 396 ------------------- docs/en/docs/deployment/deta.md | 240 +++++++++++ docs/en/docs/deployment/docker.md | 179 +++++++++ docs/en/docs/deployment/https.md | 48 +++ docs/en/docs/deployment/index.md | 7 + docs/en/docs/deployment/manually.md | 69 ++++ docs/en/docs/deployment/versions.md | 87 ++++ docs/en/docs/fastapi-people.md | 24 +- docs/en/docs/img/deployment/deta/image01.png | Bin 0 -> 39996 bytes docs/en/docs/img/deployment/deta/image02.png | Bin 0 -> 48297 bytes docs/en/docs/img/sponsors/deta.svg | 99 +++++ docs/en/docs/img/sponsors/testdriven.svg | 235 +++++++++++ docs/en/docs/index.md | 14 + docs/en/mkdocs.yml | 8 +- docs/es/docs/async.md | 2 +- docs/es/docs/index.md | 14 + docs/fr/docs/index.md | 14 + docs/it/docs/index.md | 14 + docs/ja/docs/alternatives.md | 2 +- docs/ja/docs/index.md | 14 + docs/ko/docs/index.md | 14 + docs/pt/docs/alternatives.md | 2 +- docs/pt/docs/index.md | 14 + docs/ru/docs/index.md | 14 + docs/tr/docs/index.md | 14 + docs/uk/docs/index.md | 14 + docs/zh/docs/index.md | 14 + scripts/docs.py | 69 +++- scripts/test.sh | 2 +- 34 files changed, 1236 insertions(+), 415 deletions(-) create mode 100644 docs/en/data/sponsors.yml delete mode 100644 docs/en/docs/deployment.md create mode 100644 docs/en/docs/deployment/deta.md create mode 100644 docs/en/docs/deployment/docker.md create mode 100644 docs/en/docs/deployment/https.md create mode 100644 docs/en/docs/deployment/index.md create mode 100644 docs/en/docs/deployment/manually.md create mode 100644 docs/en/docs/deployment/versions.md create mode 100644 docs/en/docs/img/deployment/deta/image01.png create mode 100644 docs/en/docs/img/deployment/deta/image02.png create mode 100644 docs/en/docs/img/sponsors/deta.svg create mode 100644 docs/en/docs/img/sponsors/testdriven.svg diff --git a/.github/actions/people/app/main.py b/.github/actions/people/app/main.py index a4d3af1fd..2847ccae4 100644 --- a/.github/actions/people/app/main.py +++ b/.github/actions/people/app/main.py @@ -375,7 +375,7 @@ def get_contributors(settings: Settings): return contributors, commentors, reviewers, authors -def get_sponsors(settings: Settings): +def get_individual_sponsors(settings: Settings, max_individual_sponsor: int = 5): nodes: List[SponsorshipAsMaintainerNode] = [] edges = get_graphql_sponsor_edges(settings=settings) @@ -387,6 +387,8 @@ def get_sponsors(settings: Settings): entities: Dict[str, SponsorEntity] = {} for node in nodes: + if node.tier.monthlyPriceInDollars > max_individual_sponsor: + continue entities[node.sponsorEntity.login] = node.sponsorEntity return entities @@ -473,7 +475,7 @@ if __name__ == "__main__": skip_users=skip_users, ) - sponsors_by_login = get_sponsors(settings=settings) + sponsors_by_login = get_individual_sponsors(settings=settings) sponsors = [] for login, sponsor in sponsors_by_login.items(): sponsors.append( diff --git a/README.md b/README.md index d0b73f9fc..67ddcd87b 100644 --- a/README.md +++ b/README.md @@ -43,6 +43,16 @@ The key features are: * estimation based on tests on an internal development team, building production applications. +## Gold Sponsors + + + + + + + +Other sponsors + ## Opinions "_[...] I'm using **FastAPI** a ton these days. [...] I'm actually planning to use it for all of my team's **ML services at Microsoft**. Some of them are getting integrated into the core **Windows** product and some **Office** products._" diff --git a/docs/en/data/sponsors.yml b/docs/en/data/sponsors.yml new file mode 100644 index 000000000..931e62813 --- /dev/null +++ b/docs/en/data/sponsors.yml @@ -0,0 +1,8 @@ +gold: + - url: https://www.deta.sh/?ref=fastapi + title: The launchpad for all your (team's) ideas + img: /img/sponsors/deta.svg +silver: + - url: https://testdriven.io/ + title: Learn to build high-quality web apps with best practices + img: /img/sponsors/testdriven.svg diff --git a/docs/en/docs/alternatives.md b/docs/en/docs/alternatives.md index 3d9e3a55a..cec53a4e2 100644 --- a/docs/en/docs/alternatives.md +++ b/docs/en/docs/alternatives.md @@ -410,7 +410,7 @@ It is the recommended server for Starlette and **FastAPI**. You can combine it with Gunicorn, to have an asynchronous multi-process server. - Check more details in the [Deployment](deployment.md){.internal-link target=_blank} section. + Check more details in the [Deployment](deployment/index.md){.internal-link target=_blank} section. ## Benchmarks and speed diff --git a/docs/en/docs/async.md b/docs/en/docs/async.md index ac21b3eed..7c3dcfdea 100644 --- a/docs/en/docs/async.md +++ b/docs/en/docs/async.md @@ -261,7 +261,7 @@ But you can also exploit the benefits of parallelism and multiprocessing (having That, plus the simple fact that Python is the main language for **Data Science**, Machine Learning and especially Deep Learning, make FastAPI a very good match for Data Science / Machine Learning web APIs and applications (among many others). -To see how to achieve this parallelism in production see the section about [Deployment](deployment.md){.internal-link target=_blank}. +To see how to achieve this parallelism in production see the section about [Deployment](deployment/index.md){.internal-link target=_blank}. ## `async` and `await` diff --git a/docs/en/docs/deployment.md b/docs/en/docs/deployment.md deleted file mode 100644 index 5e62d1e8d..000000000 --- a/docs/en/docs/deployment.md +++ /dev/null @@ -1,396 +0,0 @@ -# Deployment - -Deploying a **FastAPI** application is relatively easy. - -There are several ways to do it depending on your specific use case and the tools that you use. - -You will see more about some of the ways to do it in the next sections. - -## FastAPI versions - -**FastAPI** is already being used in production in many applications and systems. And the test coverage is kept at 100%. But its development is still moving quickly. - -New features are added frequently, bugs are fixed regularly, and the code is still continuously improving. - -That's why the current versions are still `0.x.x`, this reflects that each version could potentially have breaking changes. This follows the Semantic Versioning conventions. - -You can create production applications with **FastAPI** right now (and you have probably been doing it for some time), you just have to make sure that you use a version that works correctly with the rest of your code. - -### Pin your `fastapi` version - -The first thing you should do is to "pin" the version of **FastAPI** you are using to the specific latest version that you know works correctly for your application. - -For example, let's say you are using version `0.45.0` in your app. - -If you use a `requirements.txt` file you could specify the version with: - -```txt -fastapi==0.45.0 -``` - -that would mean that you would use exactly the version `0.45.0`. - -Or you could also pin it with: - -```txt -fastapi>=0.45.0,<0.46.0 -``` - -that would mean that you would use the versions `0.45.0` or above, but less than `0.46.0`, for example, a version `0.45.2` would still be accepted. - -If you use any other tool to manage your installations, like Poetry, Pipenv, or others, they all have a way that you can use to define specific versions for your packages. - -### Available versions - -You can see the available versions (e.g. to check what is the current latest) in the [Release Notes](release-notes.md){.internal-link target=_blank}. - -### About versions - -Following the Semantic Versioning conventions, any version below `1.0.0` could potentially add breaking changes. - -FastAPI also follows the convention that any "PATCH" version change is for bug fixes and non-breaking changes. - -!!! tip - The "PATCH" is the last number, for example, in `0.2.3`, the PATCH version is `3`. - -So, you should be able to pin to a version like: - -```txt -fastapi>=0.45.0,<0.46.0 -``` - -Breaking changes and new features are added in "MINOR" versions. - -!!! tip - The "MINOR" is the number in the middle, for example, in `0.2.3`, the MINOR version is `2`. - -### Upgrading the FastAPI versions - -You should add tests for your app. - -With **FastAPI** it's very easy (thanks to Starlette), check the docs: [Testing](tutorial/testing.md){.internal-link target=_blank} - -After you have tests, then you can upgrade the **FastAPI** version to a more recent one, and make sure that all your code is working correctly by running your tests. - -If everything is working, or after you make the necessary changes, and all your tests are passing, then you can pin your `fastapi` to that new recent version. - -### About Starlette - -You shouldn't pin the version of `starlette`. - -Different versions of **FastAPI** will use a specific newer version of Starlette. - -So, you can just let **FastAPI** use the correct Starlette version. - -### About Pydantic - -Pydantic includes the tests for **FastAPI** with its own tests, so new versions of Pydantic (above `1.0.0`) are always compatible with FastAPI. - -You can pin Pydantic to any version above `1.0.0` that works for you and below `2.0.0`. - -For example: - -```txt -pydantic>=1.2.0,<2.0.0 -``` - -## Docker - -In this section you'll see instructions and links to guides to know how to: - -* Make your **FastAPI** application a Docker image/container with maximum performance. In about **5 min**. -* (Optionally) understand what you, as a developer, need to know about HTTPS. -* Set up a Docker Swarm mode cluster with automatic HTTPS, even on a simple $5 USD/month server. In about **20 min**. -* Generate and deploy a full **FastAPI** application, using your Docker Swarm cluster, with HTTPS, etc. In about **10 min**. - -You can use **Docker** for deployment. It has several advantages like security, replicability, development simplicity, etc. - -If you are using Docker, you can use the official Docker image: - -### tiangolo/uvicorn-gunicorn-fastapi - -This image has an "auto-tuning" mechanism included, so that you can just add your code and get very high performance automatically. And without making sacrifices. - -But you can still change and update all the configurations with environment variables or configuration files. - -!!! tip - To see all the configurations and options, go to the Docker image page: tiangolo/uvicorn-gunicorn-fastapi. - -### Create a `Dockerfile` - -* Go to your project directory. -* Create a `Dockerfile` with: - -```Dockerfile -FROM tiangolo/uvicorn-gunicorn-fastapi:python3.7 - -COPY ./app /app -``` - -#### Bigger Applications - -If you followed the section about creating [Bigger Applications with Multiple Files](tutorial/bigger-applications.md){.internal-link target=_blank}, your `Dockerfile` might instead look like: - -```Dockerfile -FROM tiangolo/uvicorn-gunicorn-fastapi:python3.7 - -COPY ./app /app/app -``` - -#### Raspberry Pi and other architectures - -If you are running Docker in a Raspberry Pi (that has an ARM processor) or any other architecture, you can create a `Dockerfile` from scratch, based on a Python base image (that is multi-architecture) and use Uvicorn alone. - -In this case, your `Dockerfile` could look like: - -```Dockerfile -FROM python:3.7 - -RUN pip install fastapi uvicorn - -EXPOSE 80 - -COPY ./app /app - -CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "80"] -``` - -### Create the **FastAPI** Code - -* Create an `app` directory and enter in it. -* Create a `main.py` file with: - -```Python -from typing import Optional - -from fastapi import FastAPI - -app = FastAPI() - - -@app.get("/") -def read_root(): - return {"Hello": "World"} - - -@app.get("/items/{item_id}") -def read_item(item_id: int, q: Optional[str] = None): - return {"item_id": item_id, "q": q} -``` - -* You should now have a directory structure like: - -``` -. -├── app -│ └── main.py -└── Dockerfile -``` - -### Build the Docker image - -* Go to the project directory (in where your `Dockerfile` is, containing your `app` directory). -* Build your FastAPI image: - -
- -```console -$ docker build -t myimage . - ----> 100% -``` - -
- -### Start the Docker container - -* Run a container based on your image: - -
- -```console -$ docker run -d --name mycontainer -p 80:80 myimage -``` - -
- -Now you have an optimized FastAPI server in a Docker container. Auto-tuned for your current server (and number of CPU cores). - -### Check it - -You should be able to check it in your Docker container's URL, for example: http://192.168.99.100/items/5?q=somequery or http://127.0.0.1/items/5?q=somequery (or equivalent, using your Docker host). - -You will see something like: - -```JSON -{"item_id": 5, "q": "somequery"} -``` - -### Interactive API docs - -Now you can go to http://192.168.99.100/docs or http://127.0.0.1/docs (or equivalent, using your Docker host). - -You will see the automatic interactive API documentation (provided by Swagger UI): - -![Swagger UI](https://fastapi.tiangolo.com/img/index/index-01-swagger-ui-simple.png) - -### Alternative API docs - -And you can also go to http://192.168.99.100/redoc or http://127.0.0.1/redoc (or equivalent, using your Docker host). - -You will see the alternative automatic documentation (provided by ReDoc): - -![ReDoc](https://fastapi.tiangolo.com/img/index/index-02-redoc-simple.png) - -## HTTPS - -### About HTTPS - -It is easy to assume that HTTPS is something that is just "enabled" or not. - -But it is way more complex than that. - -!!! tip - If you are in a hurry or don't care, continue with the next section for step by step instructions to set everything up. - -To learn the basics of HTTPS, from a consumer perspective, check https://howhttps.works/. - -Now, from a developer's perspective, here are several things to have in mind while thinking about HTTPS: - -* For HTTPS, the server needs to have "certificates" generated by a third party. - * Those certificates are actually acquired from the third-party, not "generated". -* Certificates have a lifetime. - * They expire. - * And then they need to be renewed, acquired again from the third party. -* The encryption of the connection happens at the TCP level. - * That's one layer below HTTP. - * So, the certificate and encryption handling is done before HTTP. -* TCP doesn't know about "domains". Only about IP addresses. - * The information about the specific domain requested goes in the HTTP data. -* The HTTPS certificates "certify" a certain domain, but the protocol and encryption happen at the TCP level, before knowing which domain is being dealt with. -* By default, that would mean that you can only have one HTTPS certificate per IP address. - * No matter how big your server is or how small each application you have on it might be. - * There is a solution to this, however. -* There's an extension to the TLS protocol (the one handling the encryption at the TCP level, before HTTP) called SNI. - * This SNI extension allows one single server (with a single IP address) to have several HTTPS certificates and serve multiple HTTPS domains/applications. - * For this to work, a single component (program) running on the server, listening on the public IP address, must have all the HTTPS certificates in the server. -* After obtaining a secure connection, the communication protocol is still HTTP. - * The contents are encrypted, even though they are being sent with the HTTP protocol. - -It is a common practice to have one program/HTTP server running on the server (the machine, host, etc.) and managing all the HTTPS parts : sending the decrypted HTTP requests to the actual HTTP application running in the same server (the **FastAPI** application, in this case), take the HTTP response from the application, encrypt it using the appropriate certificate and sending it back to the client using HTTPS. This server is often called a TLS Termination Proxy. - -### Let's Encrypt - -Before Let's Encrypt, these HTTPS certificates were sold by trusted third-parties. - -The process to acquire one of these certificates used to be cumbersome, require quite some paperwork and the certificates were quite expensive. - -But then Let's Encrypt was created. - -It is a project from the Linux Foundation. It provides HTTPS certificates for free. In an automated way. These certificates use all the standard cryptographic security, and are short lived (about 3 months), so the security is actually better because of their reduced lifespan. - -The domains are securely verified and the certificates are generated automatically. This also allows automating the renewal of these certificates. - -The idea is to automate the acquisition and renewal of these certificates, so that you can have secure HTTPS, for free, forever. - -### Traefik - -Traefik is a high performance reverse proxy / load balancer. It can do the "TLS Termination Proxy" job (apart from other features). - -It has integration with Let's Encrypt. So, it can handle all the HTTPS parts, including certificate acquisition and renewal. - -It also has integrations with Docker. So, you can declare your domains in each application configurations and have it read those configurations, generate the HTTPS certificates and serve HTTPS to your application automatically, without requiring any change in its configuration. - ---- - -With this information and tools, continue with the next section to combine everything. - -## Docker Swarm mode cluster with Traefik and HTTPS - -You can have a Docker Swarm mode cluster set up in minutes (about 20 min) with a main Traefik handling HTTPS (including certificate acquisition and renewal). - -By using Docker Swarm mode, you can start with a "cluster" of a single machine (it can even be a $5 USD / month server) and then you can grow as much as you need adding more servers. - -To set up a Docker Swarm Mode cluster with Traefik and HTTPS handling, follow this guide: - -### Docker Swarm Mode and Traefik for an HTTPS cluster - -### Deploy a FastAPI application - -The easiest way to set everything up, would be using the [**FastAPI** Project Generators](project-generation.md){.internal-link target=_blank}. - -It is designed to be integrated with this Docker Swarm cluster with Traefik and HTTPS described above. - -You can generate a project in about 2 min. - -The generated project has instructions to deploy it, doing it takes another 2 min. - -## Alternatively, deploy **FastAPI** without Docker - -You can deploy **FastAPI** directly without Docker too. - -You just need to install an ASGI compatible server like: - -=== "Uvicorn" - - * Uvicorn, a lightning-fast ASGI server, built on uvloop and httptools. - -
- - ```console - $ pip install uvicorn - - ---> 100% - ``` - -
- -=== "Hypercorn" - - * Hypercorn, an ASGI server also compatible with HTTP/2. - -
- - ```console - $ pip install hypercorn - - ---> 100% - ``` - -
- - ...or any other ASGI server. - -And run your application the same way you have done in the tutorials, but without the `--reload` option, e.g.: - -=== "Uvicorn" - -
- - ```console - $ uvicorn main:app --host 0.0.0.0 --port 80 - - INFO: Uvicorn running on http://0.0.0.0:80 (Press CTRL+C to quit) - ``` - -
- -=== "Hypercorn" - -
- - ```console - $ hypercorn main:app --bind 0.0.0.0:80 - - Running on 0.0.0.0:8080 over http (CTRL + C to quit) - ``` - -
- -You might want to set up some tooling to make sure it is restarted automatically if it stops. - -You might also want to install Gunicorn and use it as a manager for Uvicorn, or use Hypercorn with multiple workers. - -Making sure to fine-tune the number of workers, etc. - -But if you are doing all that, you might just use the Docker image that does it automatically. diff --git a/docs/en/docs/deployment/deta.md b/docs/en/docs/deployment/deta.md new file mode 100644 index 000000000..ae7a00d3d --- /dev/null +++ b/docs/en/docs/deployment/deta.md @@ -0,0 +1,240 @@ +# Deploy on Deta + +In this section you will learn see how to easily deploy a **FastAPI** application on Deta using the free plan. 🎁 + +It will take you about **10 minutes**. + +!!! info + Deta is a **FastAPI** sponsor. 🎉 + +## A basic **FastAPI** app + +* Create a directory for your app, for example `./fastapideta/` and enter in it. + +### FastAPI code + +* Create a `main.py` file with: + +```Python +from fastapi import FastAPI + +app = FastAPI() + + +@app.get("/") +def read_root(): + return {"Hello": "World"} + + +@app.get("/items/{item_id}") +def read_item(item_id: int): + return {"item_id": item_id} +``` + +### Requirements + +Now, in the same directory create a file `requirements.txt` with: + +```text +fastapi +``` + +!!! tip + You don't need to install Uvicorn to deploy on Deta, although you would probably want to install it locally to test your app. + +### Directory structure + +You will now have one directory `./fastapideta/` with two files: + +``` +. +└── main.py +└── requirements.txt +``` + +## Create a free Deta account + +Now create a free account on Deta, you just need an email and password. + +You don't even need a credit card. + +## Install the CLI + +Once you have your account, install the Deta CLI: + +=== "Linux, macOS" + +
+ + ```console + $ curl -fsSL https://get.deta.dev/cli.sh | sh + ``` + +
+ +=== "Windows PowerShell" + +
+ + ```console + $ iwr https://get.deta.dev/cli.ps1 -useb | iex + ``` + +
+ +After installing it, open a new terminal so that the installed CLI is detected. + +In a new terminal, confirm that it was correctly installed with: + +
+ +```console +$ deta --help + +Deta command line interface for managing deta micros. +Complete documentation available at https://docs.deta.sh + +Usage: + deta [flags] + deta [command] + +Available Commands: + auth Change auth settings for a deta micro + +... +``` + +
+ +!!! tip + If you have problems installing the CLI, check the official Deta docs. + +## Login with the CLI + +Now login to Deta from the CLI with: + +
+ +```console +$ deta login + +Please, log in from the web page. Waiting.. +Logged in successfully. +``` + +
+ +This will open a web browser and authenticate automatically. + +## Deploy with Deta + +Next, deploy your application with the Deta CLI: + +
+ +```console +$ deta new + +Successfully created a new micro + +// Notice the "endpoint" 🔍 + +{ + "name": "fastapideta", + "runtime": "python3.7", + "endpoint": "https://qltnci.deta.dev", + "visor": "enabled", + "http_auth": "enabled" +} + +Adding dependencies... + + +---> 100% + + +Successfully installed fastapi-0.61.1 pydantic-1.7.2 starlette-0.13.6 +``` + +
+ +You will see a JSON message similar to: + +```JSON hl_lines="4" +{ + "name": "fastapideta", + "runtime": "python3.7", + "endpoint": "https://qltnci.deta.dev", + "visor": "enabled", + "http_auth": "enabled" +} +``` + +!!! tip + Your deployment will have a different `"endpoint"` URL. + +## Check it + +Now open your browser in your `endpoint` URL. In the example above it was `https://qltnci.deta.dev`, but yours will be different. + +You will see the JSON response from your FastAPI app: + +```JSON +{ + "Hello": "World" +} +``` + +And now go to the `/docs` for your API, in the example above it would be `https://qltnci.deta.dev/docs`. + +It will show your docs like: + + + +## Enable public access + +By default, Deta will handle authentication using cookies for your account. + +But once you are ready, you can make it public with: + +
+ +```console +$ deta auth disable + +Successfully disabled http auth +``` + +
+ +Now you can share that URL with anyone and they will be able to access your API. 🚀 + +## HTTPS + +Congrats! You deployed your FastAPI app to Deta! 🎉 🍰 + +Also notice that Deta correctly handles HTTPS for you, so you don't have to take care of that and can be sure that your clients will have a secure encrypted connection. ✅ 🔒 + +## Check the Visor + +From your docs UI (they will be in a URL like `https://qltnci.deta.dev/docs`) send a request to your *path operation* `/items/{item_id}`. + +For example with ID `5`. + +Now go to https://web.deta.sh. + +You will see there's a section to the left called "Micros" with each of your apps. + +You will see a tab with "Details", and also a tab "Visor", go to the tab "Visor". + +In there you can inspect the recent requests sent to your app. + +You can also edit them and re-play them. + + + +## Learn more + +At some point you will probably want to store some data for your app in a way that persists through time. For that you can use Deta Base, it also has a generous **free tier**. + +You can also read more in the Deta Docs. diff --git a/docs/en/docs/deployment/docker.md b/docs/en/docs/deployment/docker.md new file mode 100644 index 000000000..e32a2969d --- /dev/null +++ b/docs/en/docs/deployment/docker.md @@ -0,0 +1,179 @@ +# Deploy with Docker + +In this section you'll see instructions and links to guides to know how to: + +* Make your **FastAPI** application a Docker image/container with maximum performance. In about **5 min**. +* (Optionally) understand what you, as a developer, need to know about HTTPS. +* Set up a Docker Swarm mode cluster with automatic HTTPS, even on a simple $5 USD/month server. In about **20 min**. +* Generate and deploy a full **FastAPI** application, using your Docker Swarm cluster, with HTTPS, etc. In about **10 min**. + +You can use **Docker** for deployment. It has several advantages like security, replicability, development simplicity, etc. + +If you are using Docker, you can use the official Docker image: + +## tiangolo/uvicorn-gunicorn-fastapi + +This image has an "auto-tuning" mechanism included, so that you can just add your code and get very high performance automatically. And without making sacrifices. + +But you can still change and update all the configurations with environment variables or configuration files. + +!!! tip + To see all the configurations and options, go to the Docker image page: tiangolo/uvicorn-gunicorn-fastapi. + +## Create a `Dockerfile` + +* Go to your project directory. +* Create a `Dockerfile` with: + +```Dockerfile +FROM tiangolo/uvicorn-gunicorn-fastapi:python3.7 + +COPY ./app /app +``` + +### Bigger Applications + +If you followed the section about creating [Bigger Applications with Multiple Files](../tutorial/bigger-applications.md){.internal-link target=_blank}, your `Dockerfile` might instead look like: + +```Dockerfile +FROM tiangolo/uvicorn-gunicorn-fastapi:python3.7 + +COPY ./app /app/app +``` + +### Raspberry Pi and other architectures + +If you are running Docker in a Raspberry Pi (that has an ARM processor) or any other architecture, you can create a `Dockerfile` from scratch, based on a Python base image (that is multi-architecture) and use Uvicorn alone. + +In this case, your `Dockerfile` could look like: + +```Dockerfile +FROM python:3.7 + +RUN pip install fastapi uvicorn + +EXPOSE 80 + +COPY ./app /app + +CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "80"] +``` + +## Create the **FastAPI** Code + +* Create an `app` directory and enter in it. +* Create a `main.py` file with: + +```Python +from typing import Optional + +from fastapi import FastAPI + +app = FastAPI() + + +@app.get("/") +def read_root(): + return {"Hello": "World"} + + +@app.get("/items/{item_id}") +def read_item(item_id: int, q: Optional[str] = None): + return {"item_id": item_id, "q": q} +``` + +* You should now have a directory structure like: + +``` +. +├── app +│ └── main.py +└── Dockerfile +``` + +## Build the Docker image + +* Go to the project directory (in where your `Dockerfile` is, containing your `app` directory). +* Build your FastAPI image: + +
+ +```console +$ docker build -t myimage . + +---> 100% +``` + +
+ +## Start the Docker container + +* Run a container based on your image: + +
+ +```console +$ docker run -d --name mycontainer -p 80:80 myimage +``` + +
+ +Now you have an optimized FastAPI server in a Docker container. Auto-tuned for your current server (and number of CPU cores). + +## Check it + +You should be able to check it in your Docker container's URL, for example: http://192.168.99.100/items/5?q=somequery or http://127.0.0.1/items/5?q=somequery (or equivalent, using your Docker host). + +You will see something like: + +```JSON +{"item_id": 5, "q": "somequery"} +``` + +## Interactive API docs + +Now you can go to http://192.168.99.100/docs or http://127.0.0.1/docs (or equivalent, using your Docker host). + +You will see the automatic interactive API documentation (provided by Swagger UI): + +![Swagger UI](https://fastapi.tiangolo.com/img/index/index-01-swagger-ui-simple.png) + +## Alternative API docs + +And you can also go to http://192.168.99.100/redoc or http://127.0.0.1/redoc (or equivalent, using your Docker host). + +You will see the alternative automatic documentation (provided by ReDoc): + +![ReDoc](https://fastapi.tiangolo.com/img/index/index-02-redoc-simple.png) + +## Traefik + +Traefik is a high performance reverse proxy / load balancer. It can do the "TLS Termination Proxy" job (apart from other features). + +It has integration with Let's Encrypt. So, it can handle all the HTTPS parts, including certificate acquisition and renewal. + +It also has integrations with Docker. So, you can declare your domains in each application configurations and have it read those configurations, generate the HTTPS certificates and serve HTTPS to your application automatically, without requiring any change in its configuration. + +--- + +With this information and tools, continue with the next section to combine everything. + +## Docker Swarm mode cluster with Traefik and HTTPS + +You can have a Docker Swarm mode cluster set up in minutes (about 20 min) with a main Traefik handling HTTPS (including certificate acquisition and renewal). + +By using Docker Swarm mode, you can start with a "cluster" of a single machine (it can even be a $5 USD / month server) and then you can grow as much as you need adding more servers. + +To set up a Docker Swarm Mode cluster with Traefik and HTTPS handling, follow this guide: + +### Docker Swarm Mode and Traefik for an HTTPS cluster + +### Deploy a FastAPI application + +The easiest way to set everything up, would be using the [**FastAPI** Project Generators](../project-generation.md){.internal-link target=_blank}. + +It is designed to be integrated with this Docker Swarm cluster with Traefik and HTTPS described above. + +You can generate a project in about 2 min. + +The generated project has instructions to deploy it, doing it takes another 2 min. diff --git a/docs/en/docs/deployment/https.md b/docs/en/docs/deployment/https.md new file mode 100644 index 000000000..c735f1f4a --- /dev/null +++ b/docs/en/docs/deployment/https.md @@ -0,0 +1,48 @@ +# About HTTPS + +It is easy to assume that HTTPS is something that is just "enabled" or not. + +But it is way more complex than that. + +!!! tip + If you are in a hurry or don't care, continue with the next sections for step by step instructions to set everything up with different techniques. + +To learn the basics of HTTPS, from a consumer perspective, check https://howhttps.works/. + +Now, from a developer's perspective, here are several things to have in mind while thinking about HTTPS: + +* For HTTPS, the server needs to have "certificates" generated by a third party. + * Those certificates are actually acquired from the third-party, not "generated". +* Certificates have a lifetime. + * They expire. + * And then they need to be renewed, acquired again from the third party. +* The encryption of the connection happens at the TCP level. + * That's one layer below HTTP. + * So, the certificate and encryption handling is done before HTTP. +* TCP doesn't know about "domains". Only about IP addresses. + * The information about the specific domain requested goes in the HTTP data. +* The HTTPS certificates "certify" a certain domain, but the protocol and encryption happen at the TCP level, before knowing which domain is being dealt with. +* By default, that would mean that you can only have one HTTPS certificate per IP address. + * No matter how big your server is or how small each application you have on it might be. + * There is a solution to this, however. +* There's an extension to the TLS protocol (the one handling the encryption at the TCP level, before HTTP) called SNI. + * This SNI extension allows one single server (with a single IP address) to have several HTTPS certificates and serve multiple HTTPS domains/applications. + * For this to work, a single component (program) running on the server, listening on the public IP address, must have all the HTTPS certificates in the server. +* After obtaining a secure connection, the communication protocol is still HTTP. + * The contents are encrypted, even though they are being sent with the HTTP protocol. + +It is a common practice to have one program/HTTP server running on the server (the machine, host, etc.) and managing all the HTTPS parts : sending the decrypted HTTP requests to the actual HTTP application running in the same server (the **FastAPI** application, in this case), take the HTTP response from the application, encrypt it using the appropriate certificate and sending it back to the client using HTTPS. This server is often called a TLS Termination Proxy. + +## Let's Encrypt + +Before Let's Encrypt, these HTTPS certificates were sold by trusted third-parties. + +The process to acquire one of these certificates used to be cumbersome, require quite some paperwork and the certificates were quite expensive. + +But then Let's Encrypt was created. + +It is a project from the Linux Foundation. It provides HTTPS certificates for free. In an automated way. These certificates use all the standard cryptographic security, and are short lived (about 3 months), so the security is actually better because of their reduced lifespan. + +The domains are securely verified and the certificates are generated automatically. This also allows automating the renewal of these certificates. + +The idea is to automate the acquisition and renewal of these certificates, so that you can have secure HTTPS, for free, forever. diff --git a/docs/en/docs/deployment/index.md b/docs/en/docs/deployment/index.md new file mode 100644 index 000000000..d898cfefc --- /dev/null +++ b/docs/en/docs/deployment/index.md @@ -0,0 +1,7 @@ +# Deployment - Intro + +Deploying a **FastAPI** application is relatively easy. + +There are several ways to do it depending on your specific use case and the tools that you use. + +You will see more details to have in mind and some of the techniques to do it in the next sections. diff --git a/docs/en/docs/deployment/manually.md b/docs/en/docs/deployment/manually.md new file mode 100644 index 000000000..405124165 --- /dev/null +++ b/docs/en/docs/deployment/manually.md @@ -0,0 +1,69 @@ +# Deploy manually + +You can deploy **FastAPI** manually as well. + +You just need to install an ASGI compatible server like: + +=== "Uvicorn" + + * Uvicorn, a lightning-fast ASGI server, built on uvloop and httptools. + +
+ + ```console + $ pip install uvicorn + + ---> 100% + ``` + +
+ +=== "Hypercorn" + + * Hypercorn, an ASGI server also compatible with HTTP/2. + +
+ + ```console + $ pip install hypercorn + + ---> 100% + ``` + +
+ + ...or any other ASGI server. + +And run your application the same way you have done in the tutorials, but without the `--reload` option, e.g.: + +=== "Uvicorn" + +
+ + ```console + $ uvicorn main:app --host 0.0.0.0 --port 80 + + INFO: Uvicorn running on http://0.0.0.0:80 (Press CTRL+C to quit) + ``` + +
+ +=== "Hypercorn" + +
+ + ```console + $ hypercorn main:app --bind 0.0.0.0:80 + + Running on 0.0.0.0:8080 over http (CTRL + C to quit) + ``` + +
+ +You might want to set up some tooling to make sure it is restarted automatically if it stops. + +You might also want to install Gunicorn and use it as a manager for Uvicorn, or use Hypercorn with multiple workers. + +Making sure to fine-tune the number of workers, etc. + +But if you are doing all that, you might just use the Docker image that does it automatically. diff --git a/docs/en/docs/deployment/versions.md b/docs/en/docs/deployment/versions.md new file mode 100644 index 000000000..4be9385dd --- /dev/null +++ b/docs/en/docs/deployment/versions.md @@ -0,0 +1,87 @@ +# About FastAPI versions + +**FastAPI** is already being used in production in many applications and systems. And the test coverage is kept at 100%. But its development is still moving quickly. + +New features are added frequently, bugs are fixed regularly, and the code is still continuously improving. + +That's why the current versions are still `0.x.x`, this reflects that each version could potentially have breaking changes. This follows the Semantic Versioning conventions. + +You can create production applications with **FastAPI** right now (and you have probably been doing it for some time), you just have to make sure that you use a version that works correctly with the rest of your code. + +## Pin your `fastapi` version + +The first thing you should do is to "pin" the version of **FastAPI** you are using to the specific latest version that you know works correctly for your application. + +For example, let's say you are using version `0.45.0` in your app. + +If you use a `requirements.txt` file you could specify the version with: + +```txt +fastapi==0.45.0 +``` + +that would mean that you would use exactly the version `0.45.0`. + +Or you could also pin it with: + +```txt +fastapi>=0.45.0,<0.46.0 +``` + +that would mean that you would use the versions `0.45.0` or above, but less than `0.46.0`, for example, a version `0.45.2` would still be accepted. + +If you use any other tool to manage your installations, like Poetry, Pipenv, or others, they all have a way that you can use to define specific versions for your packages. + +## Available versions + +You can see the available versions (e.g. to check what is the current latest) in the [Release Notes](../release-notes.md){.internal-link target=_blank}. + +## About versions + +Following the Semantic Versioning conventions, any version below `1.0.0` could potentially add breaking changes. + +FastAPI also follows the convention that any "PATCH" version change is for bug fixes and non-breaking changes. + +!!! tip + The "PATCH" is the last number, for example, in `0.2.3`, the PATCH version is `3`. + +So, you should be able to pin to a version like: + +```txt +fastapi>=0.45.0,<0.46.0 +``` + +Breaking changes and new features are added in "MINOR" versions. + +!!! tip + The "MINOR" is the number in the middle, for example, in `0.2.3`, the MINOR version is `2`. + +## Upgrading the FastAPI versions + +You should add tests for your app. + +With **FastAPI** it's very easy (thanks to Starlette), check the docs: [Testing](../tutorial/testing.md){.internal-link target=_blank} + +After you have tests, then you can upgrade the **FastAPI** version to a more recent one, and make sure that all your code is working correctly by running your tests. + +If everything is working, or after you make the necessary changes, and all your tests are passing, then you can pin your `fastapi` to that new recent version. + +## About Starlette + +You shouldn't pin the version of `starlette`. + +Different versions of **FastAPI** will use a specific newer version of Starlette. + +So, you can just let **FastAPI** use the correct Starlette version. + +## About Pydantic + +Pydantic includes the tests for **FastAPI** with its own tests, so new versions of Pydantic (above `1.0.0`) are always compatible with FastAPI. + +You can pin Pydantic to any version above `1.0.0` that works for you and below `2.0.0`. + +For example: + +```txt +pydantic>=1.2.0,<2.0.0 +``` diff --git a/docs/en/docs/fastapi-people.md b/docs/en/docs/fastapi-people.md index 80b225efd..42148c1f5 100644 --- a/docs/en/docs/fastapi-people.md +++ b/docs/en/docs/fastapi-people.md @@ -112,7 +112,25 @@ The **Top Reviewers** 🕵️ have reviewed the most Pull Requests from others, These are the **Sponsors**. 😎 -They are supporting my work with **FastAPI** (and others) through GitHub Sponsors. +They are supporting my work with **FastAPI** (and others), mainly through GitHub Sponsors. + +### Gold Sponsors + +{% if sponsors %} +{% for sponsor in sponsors.gold -%} + +{% endfor %} +{% endif %} + +### Silver Sponsors + +{% if sponsors %} +{% for sponsor in sponsors.silver -%} + +{% endfor %} +{% endif %} + +### Individual Sponsors {% if people %}
@@ -126,10 +144,12 @@ They are supporting my work with **FastAPI** (and others) through source code here. +Here I'm also highlighting contributions from sponsors. + I also reserve the right to update the algorithm, sections, thresholds, etc (just in case 🤷). diff --git a/docs/en/docs/img/deployment/deta/image01.png b/docs/en/docs/img/deployment/deta/image01.png new file mode 100644 index 0000000000000000000000000000000000000000..f2e058b58037657c26e3e107e00d886a5efd840b GIT binary patch literal 39996 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 literal 0 HcmV?d00001 diff --git a/docs/en/docs/img/deployment/deta/image02.png b/docs/en/docs/img/deployment/deta/image02.png new file mode 100644 index 0000000000000000000000000000000000000000..897ec41fb11972f3aaeee85d872e74c859a81663 GIT binary patch literal 48297 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 Q>E&G!0ZIN6-k-nz5B6b0OaK4? literal 0 HcmV?d00001 diff --git a/docs/en/docs/img/sponsors/deta.svg b/docs/en/docs/img/sponsors/deta.svg new file mode 100644 index 000000000..c2b77a867 --- /dev/null +++ b/docs/en/docs/img/sponsors/deta.svg @@ -0,0 +1,99 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + Deploy your FastAPI app for free + + + + + + + + diff --git a/docs/en/docs/img/sponsors/testdriven.svg b/docs/en/docs/img/sponsors/testdriven.svg new file mode 100644 index 000000000..9ed2dc72e --- /dev/null +++ b/docs/en/docs/img/sponsors/testdriven.svg @@ -0,0 +1,235 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Learn Test-Driven Development with FastAPI + + diff --git a/docs/en/docs/index.md b/docs/en/docs/index.md index d0b73f9fc..cef2d8e05 100644 --- a/docs/en/docs/index.md +++ b/docs/en/docs/index.md @@ -43,6 +43,20 @@ The key features are: * estimation based on tests on an internal development team, building production applications. +## Gold Sponsors + + + +{% if sponsors %} +{% for sponsor in sponsors.gold -%} + +{% endfor %} +{% endif %} + + + +Other sponsors + ## Opinions "_[...] I'm using **FastAPI** a ton these days. [...] I'm actually planning to use it for all of my team's **ML services at Microsoft**. Some of them are getting integrated into the core **Windows** product and some **Office** products._" diff --git a/docs/en/mkdocs.yml b/docs/en/mkdocs.yml index 6fa7dc664..abd0d54bb 100644 --- a/docs/en/mkdocs.yml +++ b/docs/en/mkdocs.yml @@ -123,7 +123,13 @@ nav: - advanced/openapi-callbacks.md - advanced/wsgi.md - async.md -- deployment.md +- Deployment: + - deployment/index.md + - deployment/versions.md + - deployment/https.md + - deployment/deta.md + - deployment/docker.md + - deployment/manually.md - project-generation.md - alternatives.md - history-design-future.md diff --git a/docs/es/docs/async.md b/docs/es/docs/async.md index c1d714b28..6246a3527 100644 --- a/docs/es/docs/async.md +++ b/docs/es/docs/async.md @@ -261,7 +261,7 @@ Pero también puedes aprovechar los beneficios del paralelismo y el multiprocesa Eso, más el simple hecho de que Python es el lenguaje principal para **Data Science**, Machine Learning y especialmente Deep Learning, hacen de FastAPI una muy buena combinación para las API y aplicaciones web de Data Science / Machine Learning (entre muchas otras). -Para ver cómo lograr este paralelismo en producción, consulta la sección sobre [Despliegue](deployment.md){.internal-link target=_blank}. +Para ver cómo lograr este paralelismo en producción, consulta la sección sobre [Despliegue](deployment/index.md){.internal-link target=_blank}. ## `async` y `await` diff --git a/docs/es/docs/index.md b/docs/es/docs/index.md index 30e5b1d92..77053bdbd 100644 --- a/docs/es/docs/index.md +++ b/docs/es/docs/index.md @@ -42,6 +42,20 @@ Sus características principales son: * Esta estimación está basada en pruebas con un equipo de desarrollo interno contruyendo aplicaciones listas para producción. +## Gold Sponsors + + + +{% if sponsors %} +{% for sponsor in sponsors.gold -%} + +{% endfor %} +{% endif %} + + + +Otros sponsors + ## Opiniones "_[...] I'm using **FastAPI** a ton these days. [...] I'm actually planning to use it for all of my team's **ML services at Microsoft**. Some of them are getting integrated into the core **Windows** product and some **Office** products._" diff --git a/docs/fr/docs/index.md b/docs/fr/docs/index.md index 5fb52cc3c..7013e33c1 100644 --- a/docs/fr/docs/index.md +++ b/docs/fr/docs/index.md @@ -47,6 +47,20 @@ The key features are: * estimation based on tests on an internal development team, building production applications. +## Gold Sponsors + + + +{% if sponsors %} +{% for sponsor in sponsors.gold -%} + +{% endfor %} +{% endif %} + + + +Other sponsors + ## Opinions "_[...] I'm using **FastAPI** a ton these days. [...] I'm actually planning to use it for all of my team's **ML services at Microsoft**. Some of them are getting integrated into the core **Windows** product and some **Office** products._" diff --git a/docs/it/docs/index.md b/docs/it/docs/index.md index 687cc7c2b..16ba91418 100644 --- a/docs/it/docs/index.md +++ b/docs/it/docs/index.md @@ -47,6 +47,20 @@ The key features are: * estimation based on tests on an internal development team, building production applications. +## Gold Sponsors + + + +{% if sponsors %} +{% for sponsor in sponsors.gold -%} + +{% endfor %} +{% endif %} + + + +Other sponsors + ## Opinions "_[...] I'm using **FastAPI** a ton these days. [...] I'm actually planning to use it for all of my team's **ML services at Microsoft**. Some of them are getting integrated into the core **Windows** product and some **Office** products._" diff --git a/docs/ja/docs/alternatives.md b/docs/ja/docs/alternatives.md index 57bf46118..27e3c8846 100644 --- a/docs/ja/docs/alternatives.md +++ b/docs/ja/docs/alternatives.md @@ -408,7 +408,7 @@ Starletteや**FastAPI**のサーバーとして推奨されています。 Gunicornと組み合わせることで、非同期でマルチプロセスなサーバーを持つことがきます。 - 詳細は[デプロイ](deployment.md){.internal-link target=_blank}の項目で確認してください。 + 詳細は[デプロイ](deployment/index.md){.internal-link target=_blank}の項目で確認してください。 ## ベンチマーク と スピード diff --git a/docs/ja/docs/index.md b/docs/ja/docs/index.md index 9fdce0ef2..72745e1ce 100644 --- a/docs/ja/docs/index.md +++ b/docs/ja/docs/index.md @@ -43,6 +43,20 @@ FastAPI は、Pythonの標準である型ヒントに基づいてPython 3.6 以 \* 本番アプリケーションを構築している開発チームのテストによる見積もり。 +## Gold Sponsors + + + +{% if sponsors %} +{% for sponsor in sponsors.gold -%} + +{% endfor %} +{% endif %} + + + +Other sponsors + ## 評価 "_[...] 最近 **FastAPI** を使っています。 [...] 実際に私のチームの全ての **Microsoft の機械学習サービス** で使用する予定です。 そのうちのいくつかのコアな**Windows**製品と**Office**製品に統合されつつあります。_" diff --git a/docs/ko/docs/index.md b/docs/ko/docs/index.md index 8db98885d..3f03a337f 100644 --- a/docs/ko/docs/index.md +++ b/docs/ko/docs/index.md @@ -47,6 +47,20 @@ The key features are: * estimation based on tests on an internal development team, building production applications. +## Gold Sponsors + + + +{% if sponsors %} +{% for sponsor in sponsors.gold -%} + +{% endfor %} +{% endif %} + + + +Other sponsors + ## Opinions "_[...] I'm using **FastAPI** a ton these days. [...] I'm actually planning to use it for all of my team's **ML services at Microsoft**. Some of them are getting integrated into the core **Windows** product and some **Office** products._" diff --git a/docs/pt/docs/alternatives.md b/docs/pt/docs/alternatives.md index 384eb0802..1269fe66d 100644 --- a/docs/pt/docs/alternatives.md +++ b/docs/pt/docs/alternatives.md @@ -406,7 +406,7 @@ Ele é o servidor recomendado para Starlette e **FastAPI**. Você pode combinar ele com o Gunicorn, para ter um servidor multi-processos assíncrono. - Verifique mais detalhes na seção [Deployment](deployment.md){.internal-link target=_blank}. + Verifique mais detalhes na seção [Deployment](deployment/index.md){.internal-link target=_blank}. ## Performance e velocidade diff --git a/docs/pt/docs/index.md b/docs/pt/docs/index.md index ed87d6897..906b52444 100644 --- a/docs/pt/docs/index.md +++ b/docs/pt/docs/index.md @@ -42,6 +42,20 @@ Os recursos chave são: * estimativas baseadas em testes realizados com equipe interna de desenvolvimento, construindo aplicações em produção. +## Gold Sponsors + + + +{% if sponsors %} +{% for sponsor in sponsors.gold -%} + +{% endfor %} +{% endif %} + + + +Other sponsors + ## Opiniões "*[...] Estou usando **FastAPI** muito esses dias. [...] Estou na verdade planejando utilizar ele em todos os times de **serviços _Machine Learning_ na Microsoft**. Alguns deles estão sendo integrados no _core_ do produto **Windows** e alguns produtos **Office**.*" diff --git a/docs/ru/docs/index.md b/docs/ru/docs/index.md index 03abddc1d..086eb209c 100644 --- a/docs/ru/docs/index.md +++ b/docs/ru/docs/index.md @@ -47,6 +47,20 @@ The key features are: * estimation based on tests on an internal development team, building production applications. +## Gold Sponsors + + + +{% if sponsors %} +{% for sponsor in sponsors.gold -%} + +{% endfor %} +{% endif %} + + + +Other sponsors + ## Opinions "_[...] I'm using **FastAPI** a ton these days. [...] I'm actually planning to use it for all of my team's **ML services at Microsoft**. Some of them are getting integrated into the core **Windows** product and some **Office** products._" diff --git a/docs/tr/docs/index.md b/docs/tr/docs/index.md index 8db98885d..3f03a337f 100644 --- a/docs/tr/docs/index.md +++ b/docs/tr/docs/index.md @@ -47,6 +47,20 @@ The key features are: * estimation based on tests on an internal development team, building production applications. +## Gold Sponsors + + + +{% if sponsors %} +{% for sponsor in sponsors.gold -%} + +{% endfor %} +{% endif %} + + + +Other sponsors + ## Opinions "_[...] I'm using **FastAPI** a ton these days. [...] I'm actually planning to use it for all of my team's **ML services at Microsoft**. Some of them are getting integrated into the core **Windows** product and some **Office** products._" diff --git a/docs/uk/docs/index.md b/docs/uk/docs/index.md index d236da22c..671b3cf10 100644 --- a/docs/uk/docs/index.md +++ b/docs/uk/docs/index.md @@ -47,6 +47,20 @@ The key features are: * estimation based on tests on an internal development team, building production applications. +## Gold Sponsors + + + +{% if sponsors %} +{% for sponsor in sponsors.gold -%} + +{% endfor %} +{% endif %} + + + +Other sponsors + ## Opinions "_[...] I'm using **FastAPI** a ton these days. [...] I'm actually planning to use it for all of my team's **ML services at Microsoft**. Some of them are getting integrated into the core **Windows** product and some **Office** products._" diff --git a/docs/zh/docs/index.md b/docs/zh/docs/index.md index 93d9d98c4..52a45eb0c 100644 --- a/docs/zh/docs/index.md +++ b/docs/zh/docs/index.md @@ -43,6 +43,20 @@ FastAPI 是一个用于构建 API 的现代、快速(高性能)的 web 框 * 根据对某个构建线上应用的内部开发团队所进行的测试估算得出。 +## Gold Sponsors + + + +{% if sponsors %} +{% for sponsor in sponsors.gold -%} + +{% endfor %} +{% endif %} + + + +Other sponsors + ## 评价 「_[...] 最近我一直在使用 **FastAPI**。[...] 实际上我正在计划将其用于我所在的**微软**团队的所有**机器学习服务**。其中一些服务正被集成进核心 **Windows** 产品和一些 **Office** 产品。_」 diff --git a/scripts/docs.py b/scripts/docs.py index 284f344f6..e11bacb64 100644 --- a/scripts/docs.py +++ b/scripts/docs.py @@ -1,4 +1,5 @@ import os +import re import shutil from http.server import HTTPServer, SimpleHTTPRequestHandler from multiprocessing import Pool @@ -11,6 +12,7 @@ import mkdocs.config import mkdocs.utils import typer import yaml +from jinja2 import Template app = typer.Typer() @@ -194,6 +196,62 @@ def build_lang( typer.secho(f"Successfully built docs for: {lang}", color=typer.colors.GREEN) +index_sponsors_template = """ +{% if sponsors %} +{% for sponsor in sponsors.gold -%} + +{% endfor %} +{% endif %} +""" + + +def generate_readme_content(): + en_index = en_docs_path / "docs" / "index.md" + content = en_index.read_text("utf-8") + match_start = re.search(r"", content) + match_end = re.search(r"", content) + sponsors_data_path = en_docs_path / "data" / "sponsors.yml" + sponsors = mkdocs.utils.yaml_load(sponsors_data_path.read_text(encoding="utf-8")) + if not (match_start and match_end): + raise RuntimeError("Couldn't auto-generate sponsors section") + pre_end = match_start.end() + post_start = match_end.start() + template = Template(index_sponsors_template) + message = template.render(sponsors=sponsors) + pre_content = content[:pre_end] + post_content = content[post_start:] + new_content = pre_content + message + post_content + return new_content + + +@app.command() +def generate_readme(): + """ + Generate README.md content from main index.md + """ + typer.echo("Generating README") + readme_path = Path("README.md") + new_content = generate_readme_content() + readme_path.write_text(new_content, encoding="utf-8") + + +@app.command() +def verify_readme(): + """ + Verify README.md content from main index.md + """ + typer.echo("Verifying README") + readme_path = Path("README.md") + generated_content = generate_readme_content() + readme_content = readme_path.read_text("utf-8") + if generated_content != readme_content: + typer.secho( + "README.md outdated from the latest index.md", color=typer.colors.RED + ) + raise typer.Abort() + typer.echo("Valid README ✅") + + @app.command() def build_all(): """ @@ -202,24 +260,19 @@ def build_all(): """ site_path = Path("site").absolute() update_languages(lang=None) - en_build_path: Path = docs_path / "en" current_dir = os.getcwd() - os.chdir(en_build_path) - typer.echo(f"Building docs for: en") + os.chdir(en_docs_path) + typer.echo("Building docs for: en") mkdocs.commands.build.build(mkdocs.config.load_config(site_dir=str(site_path))) os.chdir(current_dir) - langs = [] for lang in get_lang_paths(): - if lang == en_build_path or not lang.is_dir(): + if lang == en_docs_path or not lang.is_dir(): continue langs.append(lang.name) cpu_count = os.cpu_count() or 1 with Pool(cpu_count * 2) as p: p.map(build_lang, langs) - typer.echo("Copying en index.md to README.md") - en_index = en_build_path / "docs" / "index.md" - shutil.copyfile(en_index, "README.md") def update_single_lang(lang: str): diff --git a/scripts/test.sh b/scripts/test.sh index e43f179ce..b593133d8 100755 --- a/scripts/test.sh +++ b/scripts/test.sh @@ -5,6 +5,6 @@ set -x bash ./scripts/lint.sh # Check README.md is up to date -diff --brief docs/en/docs/index.md README.md +python ./scripts/docs.py verify-readme export PYTHONPATH=./docs_src pytest --cov=fastapi --cov=tests --cov=docs/src --cov-report=term-missing --cov-report=xml tests ${@}